diff options
Diffstat (limited to 'src/lib/libcrypto/engine/eng_openssl.c')
-rw-r--r-- | src/lib/libcrypto/engine/eng_openssl.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/libcrypto/engine/eng_openssl.c b/src/lib/libcrypto/engine/eng_openssl.c index ecc560eb26..f1a58df857 100644 --- a/src/lib/libcrypto/engine/eng_openssl.c +++ b/src/lib/libcrypto/engine/eng_openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: eng_openssl.c,v 1.8 2014/07/10 22:45:57 jsing Exp $ */ | 1 | /* $OpenBSD: eng_openssl.c,v 1.9 2014/07/11 08:44:48 jsing Exp $ */ |
2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -67,20 +67,20 @@ | |||
67 | #include <openssl/opensslconf.h> | 67 | #include <openssl/opensslconf.h> |
68 | 68 | ||
69 | #include <openssl/crypto.h> | 69 | #include <openssl/crypto.h> |
70 | #include "cryptlib.h" | ||
71 | #include <openssl/engine.h> | ||
72 | #include <openssl/dso.h> | 70 | #include <openssl/dso.h> |
73 | #include <openssl/pem.h> | 71 | #include <openssl/engine.h> |
74 | #include <openssl/evp.h> | 72 | #include <openssl/evp.h> |
73 | #include <openssl/pem.h> | ||
75 | #include <openssl/rand.h> | 74 | #include <openssl/rand.h> |
76 | #ifndef OPENSSL_NO_RSA | 75 | |
77 | #include <openssl/rsa.h> | 76 | #ifndef OPENSSL_NO_DH |
77 | #include <openssl/dh.h> | ||
78 | #endif | 78 | #endif |
79 | #ifndef OPENSSL_NO_DSA | 79 | #ifndef OPENSSL_NO_DSA |
80 | #include <openssl/dsa.h> | 80 | #include <openssl/dsa.h> |
81 | #endif | 81 | #endif |
82 | #ifndef OPENSSL_NO_DH | 82 | #ifndef OPENSSL_NO_RSA |
83 | #include <openssl/dh.h> | 83 | #include <openssl/rsa.h> |
84 | #endif | 84 | #endif |
85 | 85 | ||
86 | /* This testing gunk is implemented (and explained) lower down. It also assumes | 86 | /* This testing gunk is implemented (and explained) lower down. It also assumes |