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.
|
|
|
|
|
2017-06-19 16:58:06 +00:00
|
|
|
RAND_pseudo_bytes() has been deprecated; use RAND_bytes() instead.
|
2000-01-21 17:50:27 +00:00
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
2017-06-19 16:58:06 +00:00
|
|
|
RAND_bytes() returns 1 on success, -1 if not supported by the current
|
|
|
|
RAND method, or 0 on other failure. The error code can be
|
|
|
|
obtained by L<ERR_get_error(3)>.
|
|
|
|
|
2017-07-02 16:16:38 +00:00
|
|
|
=head1 HISTORY
|
2017-06-19 16:58:06 +00:00
|
|
|
|
|
|
|
RAND_pseudo_bytes() was deprecated in OpenSSL 1.1.0.
|
2000-01-21 17:50:27 +00:00
|
|
|
|
|
|
|
=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
|
|
|
|
|
2017-06-19 16:58:06 +00:00
|
|
|
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 15:44:05 +00:00
|
|
|
|
|
|
|
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
|