RAND_bytes.pod 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. =pod
  2. =head1 NAME
  3. RAND_bytes, RAND_priv_bytes, RAND_bytes_ex, RAND_priv_bytes_ex,
  4. RAND_pseudo_bytes - generate random data
  5. =head1 SYNOPSIS
  6. #include <openssl/rand.h>
  7. int RAND_bytes(unsigned char *buf, int num);
  8. int RAND_priv_bytes(unsigned char *buf, int num);
  9. int RAND_bytes_ex(OPENSSL_CTX *ctx, unsigned char *buf, int num);
  10. int RAND_priv_bytes_ex(OPENSSL_CTX *ctx, unsigned char *buf, int num);
  11. Deprecated since OpenSSL 1.1.0, can be hidden entirely by defining
  12. B<OPENSSL_API_COMPAT> with a suitable version value, see
  13. L<openssl_user_macros(7)>:
  14. int RAND_pseudo_bytes(unsigned char *buf, int num);
  15. =head1 DESCRIPTION
  16. RAND_bytes() puts B<num> cryptographically strong pseudo-random bytes
  17. into B<buf>.
  18. RAND_priv_bytes() has the same semantics as RAND_bytes(). It is intended to
  19. be used for generating values that should remain private. If using the
  20. default RAND_METHOD, this function uses a separate "private" PRNG
  21. instance so that a compromise of the "public" PRNG instance will not
  22. affect the secrecy of these private values, as described in L<RAND(7)>
  23. and L<RAND_DRBG(7)>.
  24. RAND_bytes_ex() and RAND_priv_bytes_ex() are the same as RAND_bytes() and
  25. RAND_priv_bytes() except that they both take an additional I<ctx> parameter.
  26. The DRBG used for the operation is the public or private DRBG associated with
  27. the specified I<ctx>. The parameter can be NULL, in which case
  28. the default library context is used (see L<OPENSSL_CTX(3)>.
  29. If the default RAND_METHOD has been changed then for compatibility reasons the
  30. RAND_METHOD will be used in preference and the DRBG of the library context
  31. ignored.
  32. =head1 NOTES
  33. Always check the error return value of RAND_bytes() and
  34. RAND_priv_bytes() and do not take randomness for granted: an error occurs
  35. if the CSPRNG has not been seeded with enough randomness to ensure an
  36. unpredictable byte sequence.
  37. =head1 RETURN VALUES
  38. RAND_bytes() and RAND_priv_bytes()
  39. return 1 on success, -1 if not supported by the current
  40. RAND method, or 0 on other failure. The error code can be
  41. obtained by L<ERR_get_error(3)>.
  42. =head1 SEE ALSO
  43. L<RAND_add(3)>,
  44. L<RAND_bytes(3)>,
  45. L<RAND_priv_bytes(3)>,
  46. L<ERR_get_error(3)>,
  47. L<RAND(7)>,
  48. L<RAND_DRBG(7)>
  49. =head1 HISTORY
  50. =over 2
  51. =item *
  52. RAND_pseudo_bytes() was deprecated in OpenSSL 1.1.0; use RAND_bytes() instead.
  53. =item *
  54. The RAND_priv_bytes() function was added in OpenSSL 1.1.1.
  55. =item *
  56. The RAND_bytes_ex() and RAND_priv_bytes_ex() functions were added in OpenSSL 3.0
  57. =back
  58. =head1 COPYRIGHT
  59. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  60. Licensed under the Apache License 2.0 (the "License"). You may not use
  61. this file except in compliance with the License. You can obtain a copy
  62. in the file LICENSE in the source distribution or at
  63. L<https://www.openssl.org/source/license.html>.
  64. =cut