RAND_load_file.pod 2.4 KB
Newer Older
U
Ulf Möller 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
=pod

=head1 NAME

RAND_load_file, RAND_write_file, RAND_file_name - PRNG seed file

=head1 SYNOPSIS

 #include <openssl/rand.h>

 int RAND_load_file(const char *filename, long max_bytes);

 int RAND_write_file(const char *filename);

15 16
 const char *RAND_file_name(char *buf, size_t num);

U
Ulf Möller 已提交
17 18
=head1 DESCRIPTION

19 20 21 22
RAND_load_file() reads a number of bytes from file B<filename> and
adds them to the PRNG. If B<max_bytes> is non-negative,
up to B<max_bytes> are read;
if B<max_bytes> is -1, the complete file is read.
R
Rich Salz 已提交
23 24 25 26
Do not load the same file multiple times unless its contents have
been updated by RAND_write_file() between reads.
Also, note that B<filename> should be adequately protected so that an
attacker cannot replace or examine the contents.
27

R
Rich Salz 已提交
28
RAND_write_file() writes a number of random bytes (currently 128) to
29 30 31
file B<filename> which can be used to initialize the PRNG by calling
RAND_load_file() in a later session.

U
Ulf Möller 已提交
32 33
RAND_file_name() generates a default path for the random seed
file. B<buf> points to a buffer of size B<num> in which to store the
34 35
filename.

36 37
On all systems, if the environment variable B<RANDFILE> is set, its
value will be used as the seed file name.
38
Otherwise, the file is called C<.rnd>, found in platform dependent locations:
39

40 41 42 43
=over 4

=item On Windows (in order of preference)

44
 %HOME%, %USERPROFILE%, %SYSTEMROOT%, C:\
45 46 47

=item On VMS

48
 SYS$LOGIN:
49 50 51

=item On all other systems

52
 $HOME
53 54 55 56 57

=back

If C<$HOME> (on non-Windows and non-VMS system) is not set either, or
B<num> is too small for the path name, an error occurs.
U
Ulf Möller 已提交
58 59 60 61 62

=head1 RETURN VALUES

RAND_load_file() returns the number of bytes read.

R
Rich Salz 已提交
63 64
RAND_write_file() returns the number of bytes written, or -1 if the
bytes written were generated without appropriate seeding.
U
Ulf Möller 已提交
65 66 67 68 69 70

RAND_file_name() returns a pointer to B<buf> on success, and NULL on
error.

=head1 SEE ALSO

R
Rich Salz 已提交
71
L<RAND_bytes(3)>, L<RAND_add(3)>
U
Ulf Möller 已提交
72

73 74
=head1 HISTORY

75
A comment in the source since at least OpenSSL 1.0.2 said that
76 77
RAND_load_file() and RAND_write_file() were only intended for regular files,
and not really device special files such as C</dev/random>.  This was
78
poorly enforced before OpenSSL 1.1.1.
79

R
Rich Salz 已提交
80 81
=head1 COPYRIGHT

R
Rich Salz 已提交
82
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
R
Rich Salz 已提交
83 84 85 86 87 88 89

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