BN_rand.pod 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. =pod
  2. =head1 NAME
  3. BN_rand, BN_pseudo_rand, BN_rand_range, BN_pseudo_rand_range - generate pseudo-random number
  4. =head1 SYNOPSIS
  5. #include <openssl/bn.h>
  6. int BN_rand(BIGNUM *rnd, int bits, int top, int bottom);
  7. int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
  8. int BN_rand_range(BIGNUM *rnd, BIGNUM *range);
  9. int BN_pseudo_rand_range(BIGNUM *rnd, BIGNUM *range);
  10. =head1 DESCRIPTION
  11. BN_rand() generates a cryptographically strong pseudo-random number of
  12. B<bits> in length and stores it in B<rnd>.
  13. If B<bits> is less than zero, or too small to
  14. accomodate the requirements specified by the B<top> and B<bottom>
  15. parameters, an error is returned.
  16. If B<top> is -1, the
  17. most significant bit of the random number can be zero. If B<top> is 0,
  18. it is set to 1, and if B<top> is 1, the two most significant bits of
  19. the number will be set to 1, so that the product of two such random
  20. numbers will always have 2*B<bits> length. If B<bottom> is true, the
  21. number will be odd. The value of B<bits> must be zero or greater. If B<bits> is
  22. 1 then B<top> cannot also be 1.
  23. BN_pseudo_rand() does the same, but pseudo-random numbers generated by
  24. this function are not necessarily unpredictable. They can be used for
  25. non-cryptographic purposes and for certain purposes in cryptographic
  26. protocols, but usually not for key generation etc.
  27. BN_rand_range() generates a cryptographically strong pseudo-random
  28. number B<rnd> in the range 0 E<lt>= B<rnd> E<lt> B<range>.
  29. BN_pseudo_rand_range() does the same, but is based on BN_pseudo_rand(),
  30. and hence numbers generated by it are not necessarily unpredictable.
  31. The PRNG must be seeded prior to calling BN_rand() or BN_rand_range().
  32. =head1 RETURN VALUES
  33. The functions return 1 on success, 0 on error.
  34. The error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>.
  35. =head1 SEE ALSO
  36. L<bn(3)|bn(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, L<rand(3)|rand(3)>,
  37. L<RAND_add(3)|RAND_add(3)>, L<RAND_bytes(3)|RAND_bytes(3)>
  38. =head1 HISTORY
  39. BN_rand() is available in all versions of SSLeay and OpenSSL.
  40. BN_pseudo_rand() was added in OpenSSL 0.9.5. The B<top> == -1 case
  41. and the function BN_rand_range() were added in OpenSSL 0.9.6a.
  42. BN_pseudo_rand_range() was added in OpenSSL 0.9.6c.
  43. =cut