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);
=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)>
-# $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
RAND_add.3 \
RAND_bytes.3 \
RAND_cleanup.3 \
- RAND_egd.3 \
RAND_load_file.3 \
RAND_set_rand_method.3 \
RC4.3 \
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 \
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);
=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)>
+++ /dev/null
-=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