]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/RAND_bytes.pod
Update util/analyze-contention-log.sh
[thirdparty/openssl.git] / doc / man3 / RAND_bytes.pod
CommitLineData
60b52453
UM
1=pod
2
3=head1 NAME
4
993ebac9 5RAND_bytes, RAND_priv_bytes, RAND_bytes_ex, RAND_priv_bytes_ex,
c6ec0451 6RAND_pseudo_bytes, RAND_set1_random_provider - generate random data
60b52453
UM
7
8=head1 SYNOPSIS
9
10 #include <openssl/rand.h>
11
12 int RAND_bytes(unsigned char *buf, int num);
ddc6a5c8 13 int RAND_priv_bytes(unsigned char *buf, int num);
60b52453 14
528685fe 15 int RAND_bytes_ex(OSSL_LIB_CTX *ctx, unsigned char *buf, size_t num,
e587bccd 16 unsigned int strength);
528685fe 17 int RAND_priv_bytes_ex(OSSL_LIB_CTX *ctx, unsigned char *buf, size_t num,
e587bccd 18 unsigned int strength);
993ebac9 19
c6ec0451
P
20 int RAND_set1_random_provider(OSSL_LIB_CTX *ctx, OSSL_PROVIDER *p);
21
3dbf8243
MC
22The following function has been deprecated since OpenSSL 1.1.0, and can be
23hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
24see L<openssl_user_macros(7)>:
302d38e3 25
60b52453
UM
26 int RAND_pseudo_bytes(unsigned char *buf, int num);
27
28=head1 DESCRIPTION
29
88398d2a 30RAND_bytes() generates B<num> random bytes using a cryptographically
5d632274 31secure pseudo random generator (CSPRNG) and stores them in B<buf>. B<buf> B<MUST NOT> be NULL.
720b3598 32
ddc6a5c8 33RAND_priv_bytes() has the same semantics as RAND_bytes(). It is intended to
b26befb5
NT
34be used for generating values that should remain private. If using the
35default RAND_METHOD, this function uses a separate "private" PRNG
36instance so that a compromise of the "public" PRNG instance will not
37affect the secrecy of these private values, as described in L<RAND(7)>
7d615e21 38and L<EVP_RAND(7)>.
b26befb5 39
993ebac9 40RAND_bytes_ex() and RAND_priv_bytes_ex() are the same as RAND_bytes() and
e587bccd 41RAND_priv_bytes() except that they both take additional I<strength> and
e304aa87 42I<ctx> parameters. The bytes generated will have a security strength of at
e587bccd 43least I<strength> bits.
993ebac9
MC
44The DRBG used for the operation is the public or private DRBG associated with
45the specified I<ctx>. The parameter can be NULL, in which case
b4250010 46the default library context is used (see L<OSSL_LIB_CTX(3)>.
993ebac9
MC
47If the default RAND_METHOD has been changed then for compatibility reasons the
48RAND_METHOD will be used in preference and the DRBG of the library context
49ignored.
50
c6ec0451
P
51RAND_set1_random_provider() specifies a provider, I<prov>, which will be used
52by the library context I<ctx> for all of the generate calls above instead
53of the built-in in DRBGs and entropy source. Pass NULL for the provider
54to disable the random provider functionality. In this case, the built-in DRBGs
55and entropy source will be used. This call should not be considered thread safe.
56
b26befb5
NT
57=head1 NOTES
58
88398d2a
DMSP
59By default, the OpenSSL CSPRNG supports a security level of 256 bits, provided it
60was able to seed itself from a trusted entropy source.
61On all major platforms supported by OpenSSL (including the Unix-like platforms
62and Windows), OpenSSL is configured to automatically seed the CSPRNG on first use
63using the operating systems's random generator.
64
65If the entropy source fails or is not available, the CSPRNG will enter an
66error state and refuse to generate random bytes. For that reason, it is important
67to always check the error return value of RAND_bytes() and RAND_priv_bytes() and
68not take randomness for granted.
69
70On other platforms, there might not be a trusted entropy source available
71or OpenSSL might have been explicitly configured to use different entropy sources.
72If you are in doubt about the quality of the entropy source, don't hesitate to ask
73your operating system vendor or post a question on GitHub or the openssl-users
74mailing list.
ddc6a5c8 75
60b52453
UM
76=head1 RETURN VALUES
77
a73d990e 78RAND_bytes() and RAND_priv_bytes()
ddc6a5c8 79return 1 on success, -1 if not supported by the current
0ea155fc
RS
80RAND method, or 0 on other failure. The error code can be
81obtained by L<ERR_get_error(3)>.
82
c6ec0451
P
83RAND_set1_random_provider() returns 1 on success and 0 on failure.
84
b5c4bbbe
JL
85=head1 SEE ALSO
86
87L<RAND_add(3)>,
88L<RAND_bytes(3)>,
89L<RAND_priv_bytes(3)>,
90L<ERR_get_error(3)>,
91L<RAND(7)>,
7d615e21 92L<EVP_RAND(7)>
b5c4bbbe 93
a95d7574 94=head1 HISTORY
0ea155fc 95
b26befb5
NT
96=over 2
97
98=item *
99
5ecff87d 100RAND_pseudo_bytes() was deprecated in OpenSSL 1.1.0; use RAND_bytes() instead.
60b52453 101
b26befb5
NT
102=item *
103
fc5ecadd 104The RAND_priv_bytes() function was added in OpenSSL 1.1.1.
b26befb5 105
993ebac9
MC
106=item *
107
108The RAND_bytes_ex() and RAND_priv_bytes_ex() functions were added in OpenSSL 3.0
109
c6ec0451
P
110=item *
111
112The RAND_set1_random_provider() function was added in OpenSSL 3.5
113
b26befb5
NT
114=back
115
e2f92610
RS
116=head1 COPYRIGHT
117
0c679f55 118Copyright 2000-2025 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 119
4746f25a 120Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
121this file except in compliance with the License. You can obtain a copy
122in the file LICENSE in the source distribution or at
123L<https://www.openssl.org/source/license.html>.
124
125=cut