summaryrefslogtreecommitdiff
path: root/openbsd-compat/openssl-compat.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-06-14 23:38:39 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-06-14 23:38:39 +1000
commita2ed75582fb10a67424bca64775d0121631760fb (patch)
tree0589c35572eccf2a2b24f5098a073339f7ebcf48 /openbsd-compat/openssl-compat.h
parentcb52017ad9024e4d72766a19f286addcdafc2374 (diff)
- (dtucker) [openbsd-compat/openssl-compat.h] Merge USE_BUILTIN_RIJNDAEL
sections. Fixes builds with early OpenSSL 0.9.6 versions.
Diffstat (limited to 'openbsd-compat/openssl-compat.h')
-rw-r--r--openbsd-compat/openssl-compat.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h
index 01efb9cfa..cd7e366ad 100644
--- a/openbsd-compat/openssl-compat.h
+++ b/openbsd-compat/openssl-compat.h
@@ -1,4 +1,4 @@
1/* $Id: openssl-compat.h,v 1.8 2007/06/14 13:21:33 dtucker Exp $ */ 1/* $Id: openssl-compat.h,v 1.9 2007/06/14 13:38:39 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au> 4 * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
@@ -25,19 +25,16 @@
25# define USE_BUILTIN_RIJNDAEL 25# define USE_BUILTIN_RIJNDAEL
26#endif 26#endif
27 27
28#if (OPENSSL_VERSION_NUMBER < 0x00907000L) || defined(OPENSSL_LOBOTOMISED_AES)
29# define USE_BUILTIN_RIJNDAEL
30#endif
31
28#ifdef USE_BUILTIN_RIJNDAEL 32#ifdef USE_BUILTIN_RIJNDAEL
29# include "rijndael.h" 33# include "rijndael.h"
30# define AES_KEY rijndael_ctx 34# define AES_KEY rijndael_ctx
31# define AES_BLOCK_SIZE 16 35# define AES_BLOCK_SIZE 16
32# define AES_encrypt(a, b, c) rijndael_encrypt(c, a, b) 36# define AES_encrypt(a, b, c) rijndael_encrypt(c, a, b)
33# define AES_set_encrypt_key(a, b, c) rijndael_set_key(c, (char *)a, b, 1) 37# define AES_set_encrypt_key(a, b, c) rijndael_set_key(c, (char *)a, b, 1)
34#endif
35
36#if (OPENSSL_VERSION_NUMBER < 0x00907000L) || defined(OPENSSL_LOBOTOMISED_AES)
37# define USE_BUILTIN_RIJNDAEL
38#endif
39
40#ifdef USE_BUILTIN_RIJNDAEL
41# define EVP_aes_128_cbc evp_rijndael 38# define EVP_aes_128_cbc evp_rijndael
42# define EVP_aes_192_cbc evp_rijndael 39# define EVP_aes_192_cbc evp_rijndael
43# define EVP_aes_256_cbc evp_rijndael 40# define EVP_aes_256_cbc evp_rijndael