summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-03-02 14:34:58 +0000
committerBodo Möller <bodo@openssl.org>2000-03-02 14:34:58 +0000
commit5eb8ca4d9251e0f9183f7c03161ea998c303949b (patch)
tree9420cdc5d04cca662ebf85381c8d470e7c4a7f8f /crypto/rand/rand.h
parent2d092edf5edef95072fbb63cd8d09d30a7dd7973 (diff)
Use RAND_METHOD for implementing RAND_status.
Diffstat (limited to 'crypto/rand/rand.h')
-rw-r--r--crypto/rand/rand.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/rand/rand.h b/crypto/rand/rand.h
index f14a115225..79cb9047a2 100644
--- a/crypto/rand/rand.h
+++ b/crypto/rand/rand.h
@@ -70,6 +70,7 @@ typedef struct rand_meth_st
void (*cleanup)(void);
void (*add)(const void *buf, int num, double entropy);
int (*pseudorand)(unsigned char *buf, int num);
+ int (*status)(void);
} RAND_METHOD;
#ifdef BN_DEBUG