summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-04-19 11:15:37 +0000
committerderaadt <deraadt@openbsd.org>2014-04-19 11:15:37 +0000
commit4d646b48880ea353f4694b4f72be8ef13036e86b (patch)
treeb62b3389af5ed4d8dff23edd685eb88a3c790798 /lib/libssl/src
parent /* (diff)
downloadwireguard-openbsd-4d646b48880ea353f4694b4f72be8ef13036e86b.tar.xz
wireguard-openbsd-4d646b48880ea353f4694b4f72be8ef13036e86b.zip
egd is gone
Diffstat (limited to 'lib/libssl/src')
-rw-r--r--lib/libssl/src/doc/crypto/RAND.pod4
-rw-r--r--lib/libssl/src/doc/crypto/RAND_egd.pod29
2 files changed, 1 insertions, 32 deletions
diff --git a/lib/libssl/src/doc/crypto/RAND.pod b/lib/libssl/src/doc/crypto/RAND.pod
index e987414477d..e460c1653e2 100644
--- a/lib/libssl/src/doc/crypto/RAND.pod
+++ b/lib/libssl/src/doc/crypto/RAND.pod
@@ -21,8 +21,6 @@ rand - pseudo-random number generator
int RAND_write_file(const char *file);
const char *RAND_file_name(char *file, size_t num);
- int RAND_egd(const char *path);
-
void RAND_set_rand_method(const RAND_METHOD *meth);
const RAND_METHOD *RAND_get_rand_method(void);
RAND_METHOD *RAND_SSLeay(void);
@@ -66,7 +64,7 @@ L<arc4random_buf(3)> random number generator.
=head1 SEE ALSO
L<BN_rand(3)|BN_rand(3)>, L<RAND_add(3)|RAND_add(3)>,
-L<RAND_load_file(3)|RAND_load_file(3)>, L<RAND_egd(3)|RAND_egd(3)>,
+L<RAND_load_file(3)|RAND_load_file(3)>,
L<RAND_bytes(3)|RAND_bytes(3)>,
L<RAND_set_rand_method(3)|RAND_set_rand_method(3)>,
L<RAND_cleanup(3)|RAND_cleanup(3)>
diff --git a/lib/libssl/src/doc/crypto/RAND_egd.pod b/lib/libssl/src/doc/crypto/RAND_egd.pod
deleted file mode 100644
index 771f525df8d..00000000000
--- a/lib/libssl/src/doc/crypto/RAND_egd.pod
+++ /dev/null
@@ -1,29 +0,0 @@
-=pod
-
-=head1 NAME
-
-RAND_egd - query entropy gathering daemon (DEPRECATED)
-
-=head1 SYNOPSIS
-
- #include <openssl/rand.h>
-
- int RAND_egd(const char *path);
- int RAND_egd_bytes(const char *path, int bytes);
-
- int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes);
-
-=head1 DESCRIPTION
-
-These functions used to allow for the state of the random number generator
-to be controlled by external sources.
-
-They are kept for ABI compatibility but are no longer functional, and
-should not used in new programs.
-
-=head1 SEE ALSO
-
-L<rand(3)|rand(3)>, L<RAND_add(3)|RAND_add(3)>,
-L<RAND_cleanup(3)|RAND_cleanup(3)>
-
-=cut