5de646d916267ea3f3f666169c12987a3e0bb6bd
[openssl.git] / doc / man3 / BN_generate_prime.pod
1 =pod
2
3 =head1 NAME
4
5 BN_generate_prime_ex2, BN_generate_prime_ex, BN_is_prime_ex,
6 BN_is_prime_fasttest_ex, BN_GENCB_call, BN_GENCB_new, BN_GENCB_free,
7 BN_GENCB_set_old, BN_GENCB_set, BN_GENCB_get_arg, BN_generate_prime,
8 BN_is_prime, BN_is_prime_fasttest - generate primes and test for primality
9
10 =head1 SYNOPSIS
11
12  #include <openssl/bn.h>
13
14  int BN_generate_prime_ex2(BIGNUM *ret, int bits, int safe,
15                            const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb,
16                            BN_CTX *ctx);
17
18  int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, const BIGNUM *add,
19                           const BIGNUM *rem, BN_GENCB *cb);
20
21  int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb);
22
23  int BN_is_prime_fasttest_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx,
24                              int do_trial_division, BN_GENCB *cb);
25
26  int BN_GENCB_call(BN_GENCB *cb, int a, int b);
27
28  BN_GENCB *BN_GENCB_new(void);
29
30  void BN_GENCB_free(BN_GENCB *cb);
31
32  void BN_GENCB_set_old(BN_GENCB *gencb,
33                        void (*callback)(int, int, void *), void *cb_arg);
34
35  void BN_GENCB_set(BN_GENCB *gencb,
36                    int (*callback)(int, int, BN_GENCB *), void *cb_arg);
37
38  void *BN_GENCB_get_arg(BN_GENCB *cb);
39
40 Deprecated since OpenSSL 0.9.8, can be hidden entirely by defining
41 B<OPENSSL_API_COMPAT> with a suitable version value, see
42 L<openssl_user_macros(7)>:
43
44  BIGNUM *BN_generate_prime(BIGNUM *ret, int num, int safe, BIGNUM *add,
45                            BIGNUM *rem, void (*callback)(int, int, void *),
46                            void *cb_arg);
47
48  int BN_is_prime(const BIGNUM *a, int checks,
49                  void (*callback)(int, int, void *), BN_CTX *ctx, void *cb_arg);
50
51  int BN_is_prime_fasttest(const BIGNUM *a, int checks,
52                           void (*callback)(int, int, void *), BN_CTX *ctx,
53                           void *cb_arg, int do_trial_division);
54
55 =head1 DESCRIPTION
56
57 BN_generate_prime_ex2() generates a pseudo-random prime number of
58 at least bit length B<bits> using the BN_CTX provided in B<ctx>. The value of
59 B<ctx> must not be NULL.
60 The returned number is probably prime with a negligible error.
61
62 If B<ret> is not B<NULL>, it will be used to store the number.
63
64 If B<cb> is not B<NULL>, it is used as follows:
65
66 =over 2
67
68 =item *
69
70 B<BN_GENCB_call(cb, 0, i)> is called after generating the i-th
71 potential prime number.
72
73 =item *
74
75 While the number is being tested for primality,
76 B<BN_GENCB_call(cb, 1, j)> is called as described below.
77
78 =item *
79
80 When a prime has been found, B<BN_GENCB_call(cb, 2, i)> is called.
81
82 =item *
83
84 The callers of BN_generate_prime_ex() may call B<BN_GENCB_call(cb, i, j)> with
85 other values as described in their respective man pages; see L</SEE ALSO>.
86
87 =back
88
89 The prime may have to fulfill additional requirements for use in
90 Diffie-Hellman key exchange:
91
92 If B<add> is not B<NULL>, the prime will fulfill the condition p % B<add>
93 == B<rem> (p % B<add> == 1 if B<rem> == B<NULL>) in order to suit a given
94 generator.
95
96 If B<safe> is true, it will be a safe prime (i.e. a prime p so
97 that (p-1)/2 is also prime).
98
99 The random generator must be seeded prior to calling BN_generate_prime_ex().
100 If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to
101 external circumstances (see L<RAND(7)>), the operation will fail.
102 The random number generator configured for the OPENSSL_CTX associated with
103 B<ctx> will be used.
104
105 BN_generate_prime_ex() is the same as BN_generate_prime_ex2() except that no
106 B<ctx> parameter is passed.
107 In this case the random number generator associated with the default OPENSSL_CTX
108 will be used.
109
110 BN_is_prime_ex() and BN_is_prime_fasttest_ex() test if the number B<p> is
111 prime.  The following tests are performed until one of them shows that
112 B<p> is composite; if B<p> passes all these tests, it is considered
113 prime.
114
115 BN_is_prime_fasttest_ex(), when called with B<do_trial_division == 1>,
116 first attempts trial division by a number of small primes;
117 if no divisors are found by this test and B<cb> is not B<NULL>,
118 B<BN_GENCB_call(cb, 1, -1)> is called.
119 If B<do_trial_division == 0>, this test is skipped.
120
121 Both BN_is_prime_ex() and BN_is_prime_fasttest_ex() perform a Miller-Rabin
122 probabilistic primality test with B<nchecks> iterations. If
123 B<nchecks == BN_prime_checks>, a number of iterations is used that
124 yields a false positive rate of at most 2^-64 for random input.
125 The error rate depends on the size of the prime and goes down for bigger primes.
126 The rate is 2^-80 starting at 308 bits, 2^-112 at 852 bits, 2^-128 at 1080 bits,
127 2^-192 at 3747 bits and 2^-256 at 6394 bits.
128
129 When the source of the prime is not random or not trusted, the number
130 of checks needs to be much higher to reach the same level of assurance:
131 It should equal half of the targeted security level in bits (rounded up to the
132 next integer if necessary).
133 For instance, to reach the 128 bit security level, B<nchecks> should be set to
134 64.
135
136 If B<cb> is not B<NULL>, B<BN_GENCB_call(cb, 1, j)> is called
137 after the j-th iteration (j = 0, 1, ...). B<ctx> is a
138 pre-allocated B<BN_CTX> (to save the overhead of allocating and
139 freeing the structure in a loop), or B<NULL>.
140
141 BN_GENCB_call() calls the callback function held in the B<BN_GENCB> structure
142 and passes the ints B<a> and B<b> as arguments. There are two types of
143 B<BN_GENCB> structure that are supported: "new" style and "old" style. New
144 programs should prefer the "new" style, whilst the "old" style is provided
145 for backwards compatibility purposes.
146
147 A B<BN_GENCB> structure should be created through a call to BN_GENCB_new(),
148 and freed through a call to BN_GENCB_free().
149
150 For "new" style callbacks a BN_GENCB structure should be initialised with a
151 call to BN_GENCB_set(), where B<gencb> is a B<BN_GENCB *>, B<callback> is of
152 type B<int (*callback)(int, int, BN_GENCB *)> and B<cb_arg> is a B<void *>.
153 "Old" style callbacks are the same except they are initialised with a call
154 to BN_GENCB_set_old() and B<callback> is of type
155 B<void (*callback)(int, int, void *)>.
156
157 A callback is invoked through a call to B<BN_GENCB_call>. This will check
158 the type of the callback and will invoke B<callback(a, b, gencb)> for new
159 style callbacks or B<callback(a, b, cb_arg)> for old style.
160
161 It is possible to obtain the argument associated with a BN_GENCB structure
162 (set via a call to BN_GENCB_set or BN_GENCB_set_old) using BN_GENCB_get_arg.
163
164 BN_generate_prime() (deprecated) works in the same way as
165 BN_generate_prime_ex() but expects an old-style callback function
166 directly in the B<callback> parameter, and an argument to pass to it in
167 the B<cb_arg>. BN_is_prime() and BN_is_prime_fasttest()
168 can similarly be compared to BN_is_prime_ex() and
169 BN_is_prime_fasttest_ex(), respectively.
170
171 =head1 RETURN VALUES
172
173 BN_generate_prime_ex() return 1 on success or 0 on error.
174
175 BN_is_prime_ex(), BN_is_prime_fasttest_ex(), BN_is_prime() and
176 BN_is_prime_fasttest() return 0 if the number is composite, 1 if it is
177 prime with an error probability of less than 0.25^B<nchecks>, and
178 -1 on error.
179
180 BN_generate_prime() returns the prime number on success, B<NULL> otherwise.
181
182 BN_GENCB_new returns a pointer to a BN_GENCB structure on success, or B<NULL>
183 otherwise.
184
185 BN_GENCB_get_arg returns the argument previously associated with a BN_GENCB
186 structure.
187
188 Callback functions should return 1 on success or 0 on error.
189
190 The error codes can be obtained by L<ERR_get_error(3)>.
191
192 =head1 REMOVED FUNCTIONALITY
193
194 As of OpenSSL 1.1.0 it is no longer possible to create a BN_GENCB structure
195 directly, as in:
196
197  BN_GENCB callback;
198
199 Instead applications should create a BN_GENCB structure using BN_GENCB_new:
200
201  BN_GENCB *callback;
202  callback = BN_GENCB_new();
203  if (!callback)
204      /* error */
205  ...
206  BN_GENCB_free(callback);
207
208 =head1 SEE ALSO
209
210 L<DH_generate_parameters(3)>, L<DSA_generate_parameters(3)>,
211 L<RSA_generate_key(3)>, L<ERR_get_error(3)>, L<RAND_bytes(3)>,
212 L<RAND(7)>
213
214 =head1 HISTORY
215
216 The BN_GENCB_new(), BN_GENCB_free(),
217 and BN_GENCB_get_arg() functions were added in OpenSSL 1.1.0.
218
219 =head1 COPYRIGHT
220
221 Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
222
223 Licensed under the Apache License 2.0 (the "License").  You may not use
224 this file except in compliance with the License.  You can obtain a copy
225 in the file LICENSE in the source distribution or at
226 L<https://www.openssl.org/source/license.html>.
227
228 =cut