diff options
author | Richard Levitte <levitte@openssl.org> | 2003-01-30 18:39:26 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-01-30 18:39:26 +0100 |
commit | 0b13e9f055d3f7be066dc2e89fc9f9822b12eca7 (patch) | |
tree | 633b5d3e4c9356eaf9816541aaa079a0c3be9194 /crypto/rand/rand.h | |
parent | Summarise the last couple of commits. (diff) | |
download | openssl-0b13e9f055d3f7be066dc2e89fc9f9822b12eca7.tar.xz openssl-0b13e9f055d3f7be066dc2e89fc9f9822b12eca7.zip |
Add the possibility to build without the ENGINE framework.
PR: 287
Diffstat (limited to 'crypto/rand/rand.h')
-rw-r--r-- | crypto/rand/rand.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/rand/rand.h b/crypto/rand/rand.h index 66e39991ec..606382dd21 100644 --- a/crypto/rand/rand.h +++ b/crypto/rand/rand.h @@ -87,7 +87,9 @@ extern int rand_predictable; int RAND_set_rand_method(const RAND_METHOD *meth); const RAND_METHOD *RAND_get_rand_method(void); +#ifndef OPENSSL_NO_ENGINE int RAND_set_rand_engine(ENGINE *engine); +#endif RAND_METHOD *RAND_SSLeay(void); void RAND_cleanup(void ); int RAND_bytes(unsigned char *buf,int num); |