A couple of things were reversed for BN_pseudo_rand ...
authorBodo Möller <bodo@openssl.org>
Thu, 27 Jan 2000 21:09:25 +0000 (21:09 +0000)
committerBodo Möller <bodo@openssl.org>
Thu, 27 Jan 2000 21:09:25 +0000 (21:09 +0000)
crypto/bn/bn_rand.c
doc/crypto/BN_rand.pod

index dd6f6c9e449a89d8f9349a2476df2e4aa2b62986..943712c15b8f2e31b374f4e9af98000cfc43225b 100644 (file)
@@ -127,10 +127,10 @@ err:
 
 int     BN_rand(BIGNUM *rnd, int bits, int top, int bottom)
        {
-       return bnrand(1, rnd, bits, top, bottom);
+       return bnrand(0, rnd, bits, top, bottom);
        }
 
 int     BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom)
        {
-       return bnrand(0, rnd, bits, top, bottom);
+       return bnrand(1, rnd, bits, top, bottom);
        }
index 47991b1abc1137eaa26c24b25b67588e1cebc643..f090df6908ff5be857dbdeb97f4c1ead5760bb53 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-BN_rand, BN_rand_pseudo - Generate pseudo-random number
+BN_rand, BN_pseudo_rand - Generate pseudo-random number
 
 =head1 SYNOPSIS