summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorschwarze <>2018-02-15 16:47:26 +0000
committerschwarze <>2018-02-15 16:47:26 +0000
commit23646971cd17d48b0faf04a79139d1c989af79ab (patch)
tree1758fe4129e749e06fb01f3ec354b32fef8d03f7 /src/lib
parentd683e30afae0c79a8c7086da4aab66b40e93d1dd (diff)
downloadopenbsd-23646971cd17d48b0faf04a79139d1c989af79ab.tar.gz
openbsd-23646971cd17d48b0faf04a79139d1c989af79ab.tar.bz2
openbsd-23646971cd17d48b0faf04a79139d1c989af79ab.zip
Quite absurdly, the OpenSSL folks have been actively mucking around
with their random subsystem in 2017 rather than relying on the operating system, which made me check the changes to their manual pages, which caused me to notice that they document another public function as non-deprecated that we neutered: RAND_poll(3). Mention it briefly.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/man/RAND_add.312
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/RAND_add.3 b/src/lib/libcrypto/man/RAND_add.3
index 10ab096508..7eeebd7b1e 100644
--- a/src/lib/libcrypto/man/RAND_add.3
+++ b/src/lib/libcrypto/man/RAND_add.3
@@ -1,4 +1,5 @@
1.\" $OpenBSD: RAND_add.3,v 1.5 2016/12/15 06:52:02 jmc Exp $ 1.\" $OpenBSD: RAND_add.3,v 1.6 2018/02/15 16:47:26 schwarze Exp $
2.\" content checked up to: OpenSSL c16de9d8 Aug 31 23:16:22 2017 +0200
2.\" 3.\"
3.\" Copyright (c) 2014 Miod Vallat <miod@openbsd.org> 4.\" Copyright (c) 2014 Miod Vallat <miod@openbsd.org>
4.\" 5.\"
@@ -14,12 +15,13 @@
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\" 17.\"
17.Dd $Mdocdate: December 15 2016 $ 18.Dd $Mdocdate: February 15 2018 $
18.Dt RAND_ADD 3 19.Dt RAND_ADD 3
19.Os 20.Os
20.Sh NAME 21.Sh NAME
21.Nm RAND_add , 22.Nm RAND_add ,
22.Nm RAND_cleanup , 23.Nm RAND_cleanup ,
24.Nm RAND_poll ,
23.Nm RAND_seed , 25.Nm RAND_seed ,
24.Nm RAND_status 26.Nm RAND_status
25.Nd manipulate the PRNG state 27.Nd manipulate the PRNG state
@@ -33,6 +35,8 @@
33.Fc 35.Fc
34.Ft void 36.Ft void
35.Fn RAND_cleanup void 37.Fn RAND_cleanup void
38.Ft int
39.Fn RAND_poll void
36.Ft void 40.Ft void
37.Fo RAND_seed 41.Fo RAND_seed
38.Fa "const void *buf" 42.Fa "const void *buf"
@@ -47,5 +51,7 @@ generator to be controlled by external sources.
47They are kept for ABI compatibility but are no longer functional, and 51They are kept for ABI compatibility but are no longer functional, and
48should not be used in new programs. 52should not be used in new programs.
49.Sh RETURN VALUES 53.Sh RETURN VALUES
54.Fn RAND_poll
55and
50.Fn RAND_status 56.Fn RAND_status
51always returns 1. 57always return 1.