]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/RAND_load_file.pod
Fix errors found by new find-doc-nits
[thirdparty/openssl.git] / doc / man3 / RAND_load_file.pod
CommitLineData
60b52453
UM
1=pod
2
3=head1 NAME
4
5RAND_load_file, RAND_write_file, RAND_file_name - PRNG seed file
6
7=head1 SYNOPSIS
8
9 #include <openssl/rand.h>
10
60b52453
UM
11 int RAND_load_file(const char *filename, long max_bytes);
12
13 int RAND_write_file(const char *filename);
14
9ee344f5
RS
15 const char *RAND_file_name(char *buf, size_t num);
16
60b52453
UM
17=head1 DESCRIPTION
18
9ee344f5
RS
19RAND_load_file() reads a number of bytes from file B<filename> and
20adds them to the PRNG. If B<max_bytes> is non-negative,
21up to B<max_bytes> are read;
22if B<max_bytes> is -1, the complete file is read.
8389ec4b
RS
23Do not load the same file multiple times unless its contents have
24been updated by RAND_write_file() between reads.
25Also, note that B<filename> should be adequately protected so that an
26attacker cannot replace or examine the contents.
242fcd69
AP
27If B<filename> is not a regular file, then user is considered to be
28responsible for any side effects, e.g. non-anticipated blocking or
29capture of controlling terminal.
9ee344f5 30
8389ec4b 31RAND_write_file() writes a number of random bytes (currently 128) to
9ee344f5
RS
32file B<filename> which can be used to initialize the PRNG by calling
33RAND_load_file() in a later session.
34
60b52453
UM
35RAND_file_name() generates a default path for the random seed
36file. B<buf> points to a buffer of size B<num> in which to store the
13c03c8d
MC
37filename.
38
2be7014c 39On all systems, if the environment variable B<RANDFILE> is set, its
9c0586d5 40value will be used as the seed filename.
9ee344f5 41Otherwise, the file is called C<.rnd>, found in platform dependent locations:
13c03c8d 42
2be7014c
RL
43=over 4
44
45=item On Windows (in order of preference)
46
9ee344f5 47 %HOME%, %USERPROFILE%, %SYSTEMROOT%, C:\
2be7014c
RL
48
49=item On VMS
50
9ee344f5 51 SYS$LOGIN:
2be7014c
RL
52
53=item On all other systems
54
9ee344f5 55 $HOME
2be7014c
RL
56
57=back
58
59If C<$HOME> (on non-Windows and non-VMS system) is not set either, or
9c0586d5 60B<num> is too small for the pathname, an error occurs.
60b52453 61
60b52453
UM
62=head1 RETURN VALUES
63
fe7a4d7c 64RAND_load_file() returns the number of bytes read or -1 on error.
60b52453 65
8389ec4b
RS
66RAND_write_file() returns the number of bytes written, or -1 if the
67bytes written were generated without appropriate seeding.
60b52453
UM
68
69RAND_file_name() returns a pointer to B<buf> on success, and NULL on
70error.
71
72=head1 SEE ALSO
73
a73d990e
DMSP
74L<RAND_add(3)>,
75L<RAND_bytes(3)>,
76L<RAND(7)>
60b52453 77
e2f92610
RS
78=head1 COPYRIGHT
79
a73d990e 80Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 81
4746f25a 82Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
83this file except in compliance with the License. You can obtain a copy
84in the file LICENSE in the source distribution or at
85L<https://www.openssl.org/source/license.html>.
86
87=cut