new component
authorUlf Möller <ulf@openssl.org>
Sat, 4 Mar 2000 00:22:04 +0000 (00:22 +0000)
committerUlf Möller <ulf@openssl.org>
Sat, 4 Mar 2000 00:22:04 +0000 (00:22 +0000)
doc/crypto/RAND_set_rand_method.pod

index 466e9b8767b9af8f9e775078ac02af380cd5c79d..464eba416d48378352478262a9c6f0904a104419 100644 (file)
@@ -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);
         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_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
 Each component may be NULL if the function is not implemented.
 
 =head1 RETURN VALUES