diff options
author | schwarze <> | 2016-11-03 15:48:22 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-03 15:48:22 +0000 |
commit | b55a697c676bec213476fdf1525e9291c5d4aaf6 (patch) | |
tree | d168499a4dfb3fdd832a07f798870ad797dfd972 /src/lib/libcrypto/doc/RAND_load_file.pod | |
parent | 67adc08f675407bec0b8772e99ac4b939530d7e9 (diff) | |
download | openbsd-b55a697c676bec213476fdf1525e9291c5d4aaf6.tar.gz openbsd-b55a697c676bec213476fdf1525e9291c5d4aaf6.tar.bz2 openbsd-b55a697c676bec213476fdf1525e9291c5d4aaf6.zip |
convert RAND manuals from pod to mdoc
Diffstat (limited to 'src/lib/libcrypto/doc/RAND_load_file.pod')
-rw-r--r-- | src/lib/libcrypto/doc/RAND_load_file.pod | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/src/lib/libcrypto/doc/RAND_load_file.pod b/src/lib/libcrypto/doc/RAND_load_file.pod deleted file mode 100644 index 5e4c2481d8..0000000000 --- a/src/lib/libcrypto/doc/RAND_load_file.pod +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | =pod | ||
2 | |||
3 | =head1 NAME | ||
4 | |||
5 | RAND_load_file, RAND_write_file, RAND_file_name - PRNG seed file | ||
6 | |||
7 | =head1 SYNOPSIS | ||
8 | |||
9 | #include <openssl/rand.h> | ||
10 | |||
11 | const char *RAND_file_name(char *buf, size_t num); | ||
12 | |||
13 | int RAND_load_file(const char *filename, long max_bytes); | ||
14 | |||
15 | int RAND_write_file(const char *filename); | ||
16 | |||
17 | =head1 DESCRIPTION | ||
18 | |||
19 | RAND_file_name() returns a default path for the random seed file. | ||
20 | B<buf> points to a buffer of size B<num> in which to store the | ||
21 | filename. If B<num> is too small for the path name, an error occurs. | ||
22 | |||
23 | RAND_load_file() used to allow for the state of the random number generator | ||
24 | to be controlled by external sources. | ||
25 | |||
26 | It is kept for ABI compatibility but is no longer functional, and | ||
27 | should not used in new programs. | ||
28 | |||
29 | RAND_write_file() writes a number of random bytes (currently 1024) to | ||
30 | file B<filename>. | ||
31 | |||
32 | =head1 RETURN VALUES | ||
33 | |||
34 | RAND_load_file() always returns 0. | ||
35 | |||
36 | RAND_write_file() returns the number of bytes written, and -1 if the | ||
37 | bytes written were generated without appropriate seed. | ||
38 | |||
39 | RAND_file_name() returns a pointer to B<buf> on success, and NULL on | ||
40 | error. | ||
41 | |||
42 | =head1 SEE ALSO | ||
43 | |||
44 | L<rand(3)|rand(3)>, L<RAND_add(3)|RAND_add(3)>, | ||
45 | L<RAND_cleanup(3)|RAND_cleanup(3)> | ||
46 | |||
47 | =head1 HISTORY | ||
48 | |||
49 | RAND_load_file(), RAND_write_file() and RAND_file_name() are available in | ||
50 | all versions of SSLeay and OpenSSL. | ||
51 | |||
52 | =cut | ||