The branch OpenSSL_1_1_1-stable has been updated via 8b35838b44e83f323eaa5d7aeecc45c8e2321cf8 (commit) from f560b4cda1d3d8f8d7f5355a1f797699241a3ae8 (commit)
- Log ----------------------------------------------------------------- commit 8b35838b44e83f323eaa5d7aeecc45c8e2321cf8 Author: Richard Levitte <levi...@openssl.org> Date: Thu Nov 25 08:58:21 2021 +0100 Fix faulty detail in BN_rand() manual Reviewed-by: Paul Dale <pa...@openssl.org> Reviewed-by: Tomas Mraz <to...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17131) ----------------------------------------------------------------------- Summary of changes: doc/man3/BN_rand.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man3/BN_rand.pod b/doc/man3/BN_rand.pod index d57348e62b..a183ff7db1 100644 --- a/doc/man3/BN_rand.pod +++ b/doc/man3/BN_rand.pod @@ -38,7 +38,7 @@ the number will be set to 1, so that the product of two such random numbers will always have 2*B<bits> length. If B<bottom> is B<BN_RAND_BOTTOM_ODD>, the number will be odd; if it is B<BN_RAND_BOTTOM_ANY> it can be odd or even. -If B<bits> is 1 then B<top> cannot also be B<BN_RAND_FLG_TOPTWO>. +If B<bits> is 1 then B<top> cannot also be B<BN_RAND_TOP_TWO>. BN_rand_range() generates a cryptographically strong pseudo-random number B<rnd> in the range 0 E<lt>= B<rnd> E<lt> B<range>.