diff options
Diffstat (limited to 'cipher-aes.c')
-rw-r--r-- | cipher-aes.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cipher-aes.c b/cipher-aes.c index 22d500d42..228ddb104 100644 --- a/cipher-aes.c +++ b/cipher-aes.c | |||
@@ -23,7 +23,11 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | #if OPENSSL_VERSION_NUMBER < 0x00907000L | 26 | |
27 | /* compatibility with old or broken OpenSSL versions */ | ||
28 | #include "openbsd-compat/openssl-compat.h" | ||
29 | |||
30 | #ifdef USE_BUILTIN_RIJNDAEL | ||
27 | RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $"); | 31 | RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $"); |
28 | 32 | ||
29 | #include <openssl/evp.h> | 33 | #include <openssl/evp.h> |
@@ -31,10 +35,6 @@ RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $"); | |||
31 | #include "xmalloc.h" | 35 | #include "xmalloc.h" |
32 | #include "log.h" | 36 | #include "log.h" |
33 | 37 | ||
34 | #if OPENSSL_VERSION_NUMBER < 0x00906000L | ||
35 | #define SSH_OLD_EVP | ||
36 | #endif | ||
37 | |||
38 | #define RIJNDAEL_BLOCKSIZE 16 | 38 | #define RIJNDAEL_BLOCKSIZE 16 |
39 | struct ssh_rijndael_ctx | 39 | struct ssh_rijndael_ctx |
40 | { | 40 | { |
@@ -157,4 +157,4 @@ evp_rijndael(void) | |||
157 | #endif | 157 | #endif |
158 | return (&rijndal_cbc); | 158 | return (&rijndal_cbc); |
159 | } | 159 | } |
160 | #endif /* OPENSSL_VERSION_NUMBER */ | 160 | #endif /* USE_BUILTIN_RIJNDAEL */ |