Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Matt Caswell | aafbe1c | 2013-06-12 23:42:08 +0100 | [diff] [blame] | 5 | BN_rand, BN_pseudo_rand, BN_rand_range, BN_pseudo_rand_range - generate pseudo-random number |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 6 | |
| 7 | =head1 SYNOPSIS |
| 8 | |
| 9 | #include <openssl/bn.h> |
| 10 | |
| 11 | int BN_rand(BIGNUM *rnd, int bits, int top, int bottom); |
| 12 | |
Ulf Möller | 4d524e1 | 2000-02-24 11:55:57 +0000 | [diff] [blame] | 13 | int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom); |
Ulf Möller | 38e33ce | 2000-01-27 19:31:26 +0000 | [diff] [blame] | 14 | |
Bodo Möller | e306892 | 2001-02-10 00:34:02 +0000 | [diff] [blame] | 15 | int BN_rand_range(BIGNUM *rnd, BIGNUM *range); |
Ulf Möller | 57e7d3c | 2001-02-07 22:24:35 +0000 | [diff] [blame] | 16 | |
Richard Levitte | b49053c | 2002-06-05 09:31:05 +0000 | [diff] [blame] | 17 | int BN_pseudo_rand_range(BIGNUM *rnd, BIGNUM *range); |
Bodo Möller | 983495c | 2001-09-03 12:58:16 +0000 | [diff] [blame] | 18 | |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 19 | =head1 DESCRIPTION |
| 20 | |
| 21 | BN_rand() generates a cryptographically strong pseudo-random number of |
Ulf Möller | 335c4f0 | 2001-02-20 00:23:07 +0000 | [diff] [blame] | 22 | B<bits> bits in length and stores it in B<rnd>. If B<top> is -1, the |
| 23 | most significant bit of the random number can be zero. If B<top> is 0, |
| 24 | it is set to 1, and if B<top> is 1, the two most significant bits of |
| 25 | the number will be set to 1, so that the product of two such random |
| 26 | numbers will always have 2*B<bits> length. If B<bottom> is true, the |
| 27 | number will be odd. |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 28 | |
Ulf Möller | 38e33ce | 2000-01-27 19:31:26 +0000 | [diff] [blame] | 29 | BN_pseudo_rand() does the same, but pseudo-random numbers generated by |
| 30 | this function are not necessarily unpredictable. They can be used for |
| 31 | non-cryptographic purposes and for certain purposes in cryptographic |
| 32 | protocols, but usually not for key generation etc. |
| 33 | |
Ulf Möller | 57e7d3c | 2001-02-07 22:24:35 +0000 | [diff] [blame] | 34 | BN_rand_range() generates a cryptographically strong pseudo-random |
Bodo Möller | e306892 | 2001-02-10 00:34:02 +0000 | [diff] [blame] | 35 | number B<rnd> in the range 0 <lt>= B<rnd> E<lt> B<range>. |
Bodo Möller | 983495c | 2001-09-03 12:58:16 +0000 | [diff] [blame] | 36 | BN_pseudo_rand_range() does the same, but is based on BN_pseudo_rand(), |
| 37 | and hence numbers generated by it are not necessarily unpredictable. |
Ulf Möller | 57e7d3c | 2001-02-07 22:24:35 +0000 | [diff] [blame] | 38 | |
| 39 | The PRNG must be seeded prior to calling BN_rand() or BN_rand_range(). |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 40 | |
| 41 | =head1 RETURN VALUES |
| 42 | |
Ulf Möller | 57e7d3c | 2001-02-07 22:24:35 +0000 | [diff] [blame] | 43 | The functions return 1 on success, 0 on error. |
Richard Levitte | bb075f8 | 2000-01-27 01:25:31 +0000 | [diff] [blame] | 44 | The error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>. |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 45 | |
| 46 | =head1 SEE ALSO |
| 47 | |
Richard Levitte | 6859cf7 | 2002-09-25 13:33:28 +0000 | [diff] [blame] | 48 | L<bn(3)|bn(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, L<rand(3)|rand(3)>, |
Richard Levitte | bb075f8 | 2000-01-27 01:25:31 +0000 | [diff] [blame] | 49 | L<RAND_add(3)|RAND_add(3)>, L<RAND_bytes(3)|RAND_bytes(3)> |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 50 | |
| 51 | =head1 HISTORY |
| 52 | |
| 53 | BN_rand() is available in all versions of SSLeay and OpenSSL. |
Ulf Möller | 335c4f0 | 2001-02-20 00:23:07 +0000 | [diff] [blame] | 54 | BN_pseudo_rand() was added in OpenSSL 0.9.5. The B<top> == -1 case |
| 55 | and the function BN_rand_range() were added in OpenSSL 0.9.6a. |
Bodo Möller | 983495c | 2001-09-03 12:58:16 +0000 | [diff] [blame] | 56 | BN_pseudo_rand_range() was added in OpenSSL 0.9.6c. |
Ulf Möller | dd8dec6 | 2000-01-23 22:06:24 +0000 | [diff] [blame] | 57 | |
| 58 | =cut |