aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-01 15:33:15 +0000
committerUlf Möller <ulf@openssl.org>2000-02-01 15:33:15 +0000
commitcf802b983f73068a3c98c3795c29f5c75654731d (patch)
tree4fc1c59850519b9511bb2fcf26a0e196abe392f8 /doc
parent20ead2c6f74f3ee861d7ba4737faf7b1aae65f80 (diff)
downloadopenssl-cf802b983f73068a3c98c3795c29f5c75654731d.tar.gz
Remove an =over that never ends
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/BN_generate_prime.pod7
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/crypto/BN_generate_prime.pod b/doc/crypto/BN_generate_prime.pod
index 4aa0725955..c2cc151cf6 100644
--- a/doc/crypto/BN_generate_prime.pod
+++ b/doc/crypto/BN_generate_prime.pod
@@ -62,18 +62,12 @@ prime. The following tests are performed until one of them shows that
B<a> is composite; if B<a> passes all these tests, it is considered
prime.
-=over 4
-
-=item *
-
BN_is_prime_fasttest(), when called with B<do_trial_division == 1>,
first attempts trial division by a number of small primes;
if no divisors are found by this test and B<callback> is not B<NULL>,
B<callback(1, -1, cb_arg)> is called.
If B<do_trial_division == 0>, this test is skipped.
-=item *
-
Both BN_is_prime() and BN_is_prime_fasttest() perform a Miller-Rabin
probabilistic primality test with B<checks> iterations. If
B<checks == BN_prime_check>, a number of iterations is used that
@@ -87,7 +81,6 @@ BN_is_prime_fasttest(), B<ctx2> is a second pre-allocated B<BN_CTX> or
B<NULL> (lacking this parameter, BN_is_prime() always has to allocate
an additional B<CN_CTX>).
-
=head1 RETURN VALUES
BN_generate_prime() returns the prime number on success, B<NULL> otherwise.