diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/man/RAND_add.3 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/RAND_add.3 b/src/lib/libcrypto/man/RAND_add.3 new file mode 100644 index 0000000000..31b61a6386 --- /dev/null +++ b/src/lib/libcrypto/man/RAND_add.3 | |||
@@ -0,0 +1,32 @@ | |||
1 | .Dd $Mdocdate: November 3 2016 $ | ||
2 | .Dt RAND_ADD 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm RAND_add , | ||
6 | .Nm RAND_seed , | ||
7 | .Nm RAND_status | ||
8 | .Nd add entropy to the PRNG (DEPRECATED) | ||
9 | .Sh SYNOPSIS | ||
10 | .In openssl/rand.h | ||
11 | .Ft void | ||
12 | .Fo RAND_seed | ||
13 | .Fa "const void *buf" | ||
14 | .Fa "int num" | ||
15 | .Fc | ||
16 | .Ft void | ||
17 | .Fo RAND_add | ||
18 | .Fa "const void *buf" | ||
19 | .Fa "int num" | ||
20 | .Fa "double entropy" | ||
21 | .Fc | ||
22 | .Ft int | ||
23 | .Fn RAND_status void | ||
24 | .Sh DESCRIPTION | ||
25 | These functions used to allow for the state of the random number | ||
26 | generator to be controlled by external sources. | ||
27 | .Pp | ||
28 | They are kept for ABI compatibility but are no longer functional, and | ||
29 | should not be used in new programs. | ||
30 | .Sh SEE ALSO | ||
31 | .Xr RAND_cleanup 3 , | ||
32 | .Xr RAND_load_file 3 | ||