aboutsummaryrefslogtreecommitdiffstats
path: root/doc/crypto/RAND_add.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/crypto/RAND_add.pod')
-rw-r--r--doc/crypto/RAND_add.pod9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/crypto/RAND_add.pod b/doc/crypto/RAND_add.pod
index fd830b49ee..d1910071b6 100644
--- a/doc/crypto/RAND_add.pod
+++ b/doc/crypto/RAND_add.pod
@@ -2,7 +2,7 @@
=head1 NAME
-RAND_add, RAND_seed, RAND_status - add
+RAND_add, RAND_seed, RAND_status, RAND_event, RAND_screen - add
entropy to the PRNG
=head1 SYNOPSIS
@@ -15,6 +15,9 @@ entropy to the PRNG
int RAND_status(void);
+ int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam);
+ void RAND_screen(void);
+
=head1 DESCRIPTION
RAND_add() mixes the B<num> bytes at B<buf> into the PRNG state. Thus,
@@ -44,6 +47,10 @@ RAND_seed() is equivalent to RAND_add() when B<num == entropy>.
RAND_status() returns 1 if the PRNG has been seeded
with enough data, 0 otherwise.
+RAND_event() calls RAND_poll() and returns RAND_seed().
+
+RAND_screen calls RAND_poll().
+
The other functions do not return values.
=head1 SEE ALSO