summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/doc/RAND.pod34
-rw-r--r--src/lib/libcrypto/man/Makefile3
2 files changed, 1 insertions, 36 deletions
diff --git a/src/lib/libcrypto/doc/RAND.pod b/src/lib/libcrypto/doc/RAND.pod
deleted file mode 100644
index dd6962fa35..0000000000
--- a/src/lib/libcrypto/doc/RAND.pod
+++ /dev/null
@@ -1,34 +0,0 @@
1=pod
2
3=head1 NAME
4
5RAND - pseudo-random number generator
6
7=head1 SYNOPSIS
8
9 #include <openssl/rand.h>
10
11 int RAND_bytes(unsigned char *buf, int num);
12 int RAND_pseudo_bytes(unsigned char *buf, int num);
13
14=head1 DESCRIPTION
15
16These functions give access to the systems cryptographically secure
17pseudo-random number generator (PRNG). It is used by other library functions
18for example to generate random keys, and applications can use it when they
19need randomness.
20
21L<RAND_bytes(3)|RAND_bytes(3)> describes how to obtain random data from the
22PRNG.
23
24=head1 INTERNALS
25
26The RAND_SSLeay() method implements a PRNG based on the systems'
27L<arc4random_buf(3)> random number generator.
28
29=head1 SEE ALSO
30
31L<BN_rand(3)|BN_rand(3)>,
32L<RAND_bytes(3)|RAND_bytes(3)>
33
34=cut
diff --git a/src/lib/libcrypto/man/Makefile b/src/lib/libcrypto/man/Makefile
index dbfce91647..4312bdc341 100644
--- a/src/lib/libcrypto/man/Makefile
+++ b/src/lib/libcrypto/man/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.42 2016/11/03 15:20:36 schwarze Exp $ 1# $OpenBSD: Makefile,v 1.43 2016/11/03 15:31:29 schwarze Exp $
2 2
3.include <bsd.own.mk> # for NOMAN 3.include <bsd.own.mk> # for NOMAN
4 4
@@ -145,7 +145,6 @@ MAN= \
145 lh_new.3 \ 145 lh_new.3 \
146 146
147GENMAN= \ 147GENMAN= \
148 RAND.3 \
149 RAND_add.3 \ 148 RAND_add.3 \
150 RAND_bytes.3 \ 149 RAND_bytes.3 \
151 RAND_cleanup.3 \ 150 RAND_cleanup.3 \