2000-01-21 17:50:27 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2000-02-24 11:55:57 +00:00
|
|
|
RAND_bytes, RAND_pseudo_bytes - generate random data
|
2000-01-21 17:50:27 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
|
|
|
|
int RAND_bytes(unsigned char *buf, int num);
|
|
|
|
|
2015-02-26 13:52:30 +00:00
|
|
|
Deprecated:
|
|
|
|
|
2016-01-05 04:00:33 +00:00
|
|
|
#if OPENSSL_API_COMPAT < 0x10100000L
|
2000-01-21 17:50:27 +00:00
|
|
|
int RAND_pseudo_bytes(unsigned char *buf, int num);
|
2016-01-05 04:00:33 +00:00
|
|
|
#endif
|
2000-01-21 17:50:27 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2000-01-21 19:54:22 +00:00
|
|
|
RAND_bytes() puts B<num> cryptographically strong pseudo-random bytes
|
|
|
|
into B<buf>. An error occurs if the PRNG has not been seeded with
|
|
|
|
enough randomness to ensure an unpredictable byte sequence.
|
|
|
|
|
2015-02-26 13:52:30 +00:00
|
|
|
RAND_pseudo_bytes() has been deprecated. Users should use RAND_bytes() instead.
|
2000-01-21 19:54:22 +00:00
|
|
|
RAND_pseudo_bytes() puts B<num> pseudo-random bytes into B<buf>.
|
|
|
|
Pseudo-random byte sequences generated by RAND_pseudo_bytes() will be
|
|
|
|
unique if they are of sufficient length, but are not necessarily
|
|
|
|
unpredictable. They can be used for non-cryptographic purposes and for
|
|
|
|
certain purposes in cryptographic protocols, but usually not for key
|
|
|
|
generation etc.
|
2000-01-21 17:50:27 +00:00
|
|
|
|
2007-09-24 11:01:18 +00:00
|
|
|
The contents of B<buf> is mixed into the entropy pool before retrieving
|
|
|
|
the new pseudo-random bytes unless disabled at compile time (see FAQ).
|
|
|
|
|
2000-01-21 17:50:27 +00:00
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
|
|
|
RAND_bytes() returns 1 on success, 0 otherwise. The error code can be
|
2015-08-17 19:21:33 +00:00
|
|
|
obtained by L<ERR_get_error(3)>. RAND_pseudo_bytes() returns 1 if the
|
2000-01-21 17:50:27 +00:00
|
|
|
bytes generated are cryptographically strong, 0 otherwise. Both
|
|
|
|
functions return -1 if they are not supported by the current RAND
|
|
|
|
method.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2016-11-11 08:33:09 +00:00
|
|
|
L<RAND_bytes(3)>, L<ERR_get_error(3)>,
|
2015-08-17 19:21:33 +00:00
|
|
|
L<RAND_add(3)>
|
2000-01-21 17:50:27 +00:00
|
|
|
|
2016-05-18 15:44:05 +00:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
|
|
|
|
Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|