From: Ulf Möller Date: Tue, 1 Feb 2000 15:33:15 +0000 (+0000) Subject: Remove an =over that never ends X-Git-Tag: OpenSSL_0_9_5beta1~133 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=cf802b983f73068a3c98c3795c29f5c75654731d Remove an =over that never ends --- 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 is composite; if B passes all these tests, it is considered prime. -=over 4 - -=item * - BN_is_prime_fasttest(), when called with B, first attempts trial division by a number of small primes; if no divisors are found by this test and B is not B, B is called. If B, this test is skipped. -=item * - Both BN_is_prime() and BN_is_prime_fasttest() perform a Miller-Rabin probabilistic primality test with B iterations. If B, a number of iterations is used that @@ -87,7 +81,6 @@ BN_is_prime_fasttest(), B is a second pre-allocated B or B (lacking this parameter, BN_is_prime() always has to allocate an additional B). - =head1 RETURN VALUES BN_generate_prime() returns the prime number on success, B otherwise.