summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2018-02-23 12:16:09 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2018-02-23 12:16:09 +0000
commitbd459829b339c5709a03b29105ed22f5a3dd1a27 (patch)
tree2f9e4690aa151442758f5395f14e449fb298d9ce /lib
parent36ea7dd0ade9866d92d294c1031d865459c6226f (diff)
In bn.h rev. 1.38 2018/02/20 17:13:14, jsing@ provided
BN_GENCB_new(3), BN_GENCB_free(3), and BN_GENCB_get_arg(3). Merge the documentation from OpenSSL, verbatim.
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/man/BN_generate_prime.359
1 files changed, 54 insertions, 5 deletions
diff --git a/lib/libcrypto/man/BN_generate_prime.3 b/lib/libcrypto/man/BN_generate_prime.3
index 5d4f931a045..b3926afaa9a 100644
--- a/lib/libcrypto/man/BN_generate_prime.3
+++ b/lib/libcrypto/man/BN_generate_prime.3
@@ -1,5 +1,5 @@
-.\" $OpenBSD: BN_generate_prime.3,v 1.6 2017/01/07 05:06:22 schwarze Exp $
-.\" OpenSSL 2afb29b4 Aug 14 16:47:13 2014 -0400
+.\" $OpenBSD: BN_generate_prime.3,v 1.7 2018/02/23 12:16:08 schwarze Exp $
+.\" full merge up to: OpenSSL b3696a55 Sep 2 09:35:50 2017 -0400
.\"
.\" This file was written by Ulf Moeller <ulf@openssl.org>
.\" Bodo Moeller <bodo@openssl.org>, and Matt Caswell <matt@openssl.org>.
@@ -50,7 +50,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
.\" OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: January 7 2017 $
+.Dd $Mdocdate: February 23 2018 $
.Dt BN_GENERATE_PRIME 3
.Os
.Sh NAME
@@ -58,8 +58,11 @@
.Nm BN_is_prime_ex ,
.Nm BN_is_prime_fasttest_ex ,
.Nm BN_GENCB_call ,
+.Nm BN_GENCB_new ,
+.Nm BN_GENCB_free ,
.Nm BN_GENCB_set_old ,
.Nm BN_GENCB_set ,
+.Nm BN_GENCB_get_arg ,
.Nm BN_generate_prime ,
.Nm BN_is_prime ,
.Nm BN_is_prime_fasttest
@@ -96,6 +99,12 @@
.Fa "int a"
.Fa "int b"
.Fc
+.Ft BN_GENCB *
+.Fn BN_GENCB_new void
+.Ft void
+.Fo BN_GENCB_free
+.Fa "BN_GENCB *cb"
+.Fc
.Ft void
.Fo BN_GENCB_set_old
.Fa "BN_GENCB *gencb"
@@ -108,6 +117,10 @@
.Fa "int (*callback)(int, int, BN_GENCB *)"
.Fa "void *cb_arg"
.Fc
+.Ft void *
+.Fo BN_GENCB_get_arg
+.Fa "BN_GENCB *cb"
+.Fc
.Pp
Deprecated:
.Pp
@@ -260,9 +273,16 @@ structures that are supported: "new" style and "old" style.
New programs should prefer the "new" style, whilst the "old" style is
provided for backwards compatibility purposes.
.Pp
+A
+.Vt BN_GENCB
+structure should be created through a call to
+.Fn BN_GENCB_new
+and freed through a call to
+.Fn BN_GENCB_free .
+.Pp
For "new" style callbacks a
.Vt BN_GENCB
-structure should be initialised with a call to the macro
+structure should be initialised with a call to
.Fn BN_GENCB_set ,
where
.Fa gencb
@@ -276,7 +296,7 @@ and
is a
.Vt void * .
"Old" style callbacks are the same except they are initialised with a
-call to the macro
+call to
.Fn BN_GENCB_set_old
and
.Fa callback
@@ -291,6 +311,15 @@ for new style callbacks or
.Fn callback a b cb_arg
for old style.
.Pp
+It is possible to obtain the argument associated with a
+.Vt BN_GENCB
+structure (set via a call to
+.Fn BN_GENCB_set
+or
+.Fn BN_GENCB_set_old )
+using
+.Fn BN_GENCB_get_arg .
+.Pp
.Fn BN_generate_prime
(deprecated) works in the same way as
.Fn BN_generate_prime_ex
@@ -326,6 +355,18 @@ returns the prime number on success,
.Dv NULL
otherwise.
.Pp
+.Fn BN_GENCB_new
+returns a pointer to a
+.Vt BN_GENCB
+structure on success, or
+.Dv NULL
+otherwise.
+.Pp
+.Fn BN_GENCB_get_arg
+returns the argument previously associated with a
+.Vt BN_GENCB
+structure.
+.Pp
Callback functions should return 1 on success or 0 on error.
.Pp
The error codes can be obtained by
@@ -342,10 +383,18 @@ arguments to
and to
.Fn BN_is_prime
were added in SSLeay 0.9.0.
+.Pp
The
.Fa ret
argument to
.Fn BN_generate_prime
was added in SSLeay 0.9.1.
+.Pp
.Fn BN_is_prime_fasttest
was added in OpenSSL 0.9.5.
+.Pp
+.Fn BN_GENCB_new ,
+.Fn BN_GENCB_free ,
+and
+.Fn BN_GENCB_get_arg
+were added in OpenSSL 1.1.0 .