diff options
author | 2014-04-19 11:15:37 +0000 | |
---|---|---|
committer | 2014-04-19 11:15:37 +0000 | |
commit | 4d646b48880ea353f4694b4f72be8ef13036e86b (patch) | |
tree | b62b3389af5ed4d8dff23edd685eb88a3c790798 | |
parent | /* (diff) | |
download | wireguard-openbsd-4d646b48880ea353f4694b4f72be8ef13036e86b.tar.xz wireguard-openbsd-4d646b48880ea353f4694b4f72be8ef13036e86b.zip |
egd is gone
-rw-r--r-- | lib/libcrypto/doc/RAND.pod | 4 | ||||
-rw-r--r-- | lib/libcrypto/man/Makefile | 4 | ||||
-rw-r--r-- | lib/libssl/src/doc/crypto/RAND.pod | 4 | ||||
-rw-r--r-- | lib/libssl/src/doc/crypto/RAND_egd.pod | 29 |
4 files changed, 3 insertions, 38 deletions
diff --git a/lib/libcrypto/doc/RAND.pod b/lib/libcrypto/doc/RAND.pod index e987414477d..e460c1653e2 100644 --- a/lib/libcrypto/doc/RAND.pod +++ b/lib/libcrypto/doc/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/libcrypto/man/Makefile b/lib/libcrypto/man/Makefile index 215be6ef8af..66cb3e49e1e 100644 --- a/lib/libcrypto/man/Makefile +++ b/lib/libcrypto/man/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2014/04/16 12:08:46 sthen Exp $ +# $OpenBSD: Makefile,v 1.4 2014/04/19 11:15:37 deraadt Exp $ .include <bsd.own.mk> # for NOMAN @@ -127,7 +127,6 @@ MAN= \ RAND_add.3 \ RAND_bytes.3 \ RAND_cleanup.3 \ - RAND_egd.3 \ RAND_load_file.3 \ RAND_set_rand_method.3 \ RC4.3 \ @@ -666,7 +665,6 @@ MLINKS+=\ RAND_add.3 RAND_seed.3 \ RAND_add.3 RAND_status.3 \ RAND_bytes.3 RAND_pseudo_bytes.3 \ - RAND_egd.3 RAND_egd_bytes.3 \ RAND_load_file.3 RAND_file_name.3 \ RAND_load_file.3 RAND_write_file.3 \ RAND_set_rand_method.3 RAND_SSLeay.3 \ 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 |