From: deraadt Date: Sat, 19 Apr 2014 11:15:37 +0000 (+0000) Subject: egd is gone X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4d646b48880ea353f4694b4f72be8ef13036e86b;p=openbsd egd is gone --- 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 random number generator. =head1 SEE ALSO L, L, -L, L, +L, L, L, L 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 # 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 random number generator. =head1 SEE ALSO L, L, -L, L, +L, L, L, L 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 - - 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, L, -L - -=cut