diff options
Diffstat (limited to 'src/lib/libcrypto/doc/RAND_add.pod')
-rw-r--r-- | src/lib/libcrypto/doc/RAND_add.pod | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/lib/libcrypto/doc/RAND_add.pod b/src/lib/libcrypto/doc/RAND_add.pod deleted file mode 100644 index 3ffd4910c4..0000000000 --- a/src/lib/libcrypto/doc/RAND_add.pod +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | =pod | ||
2 | |||
3 | =head1 NAME | ||
4 | |||
5 | RAND_add, RAND_seed, RAND_status - add entropy to the PRNG (DEPRECATED) | ||
6 | |||
7 | =head1 SYNOPSIS | ||
8 | |||
9 | #include <openssl/rand.h> | ||
10 | |||
11 | void RAND_seed(const void *buf, int num); | ||
12 | |||
13 | void RAND_add(const void *buf, int num, double entropy); | ||
14 | |||
15 | int RAND_status(void); | ||
16 | |||
17 | =head1 DESCRIPTION | ||
18 | |||
19 | These functions used to allow for the state of the random number generator | ||
20 | to be controlled by external sources. | ||
21 | |||
22 | They are kept for ABI compatibility but are no longer functional, and | ||
23 | should not be used in new programs. | ||
24 | |||
25 | =head1 SEE ALSO | ||
26 | |||
27 | L<rand(3)|rand(3)>, | ||
28 | L<RAND_load_file(3)|RAND_load_file(3)>, L<RAND_cleanup(3)|RAND_cleanup(3)> | ||
29 | |||
30 | =cut | ||