summaryrefslogtreecommitdiffstats
path: root/doc/crypto/RAND_set_rand_method.pod
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-03-04 00:22:04 +0000
committerUlf Möller <ulf@openssl.org>2000-03-04 00:22:04 +0000
commit7f1120994eb93529bfb7f52f6d0766db52f24d4d (patch)
tree107f134d2b1bd5584a8dce9238a7e0092ae37092 /doc/crypto/RAND_set_rand_method.pod
parent938d90db7129543a46ce3a7b74330c609e86ef5b (diff)
new component
Diffstat (limited to 'doc/crypto/RAND_set_rand_method.pod')
-rw-r--r--doc/crypto/RAND_set_rand_method.pod4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/crypto/RAND_set_rand_method.pod b/doc/crypto/RAND_set_rand_method.pod
index 466e9b8767..464eba416d 100644
--- a/doc/crypto/RAND_set_rand_method.pod
+++ b/doc/crypto/RAND_set_rand_method.pod
@@ -34,10 +34,12 @@ RAND_get_rand_method() returns a pointer to the current method.
void (*cleanup)(void);
void (*add)(const void *buf, int num, int entropy);
int (*pseudorand)(unsigned char *buf, int num);
+ int (*status)(void);
} RAND_METHOD;
The components point to the implementation of RAND_seed(),
-RAND_bytes(), RAND_cleanup(), RAND_add() and RAND_pseudo_rand().
+RAND_bytes(), RAND_cleanup(), RAND_add(), RAND_pseudo_rand()
+and RAND_status().
Each component may be NULL if the function is not implemented.
=head1 RETURN VALUES