summaryrefslogtreecommitdiff
path: root/umac.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-06-14 23:21:32 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-06-14 23:21:32 +1000
commitcb52017ad9024e4d72766a19f286addcdafc2374 (patch)
tree739207c3be6c98d5efab88fbfdd93a403c1b568c /umac.c
parentbed63112f5a1f52b255f03bc2f457eaab5001e0c (diff)
- (dtucker) [cipher-ctr.c umac.c openbsd-compat/openssl-compat.h] Move the
USE_BUILTIN_RIJNDAEL compat goop to openssl-compat.h so it can be shared with umac.c. Allows building with OpenSSL 0.9.5 again including umac support. With tim@ djm@, ok djm.
Diffstat (limited to 'umac.c')
-rw-r--r--umac.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/umac.c b/umac.c
index 29c202a21..c2fdcf448 100644
--- a/umac.c
+++ b/umac.c
@@ -165,7 +165,10 @@ static void STORE_UINT32_REVERSED(void *ptr, UINT32 x)
165#define AES_BLOCK_LEN 16 165#define AES_BLOCK_LEN 16
166 166
167/* OpenSSL's AES */ 167/* OpenSSL's AES */
168#include <openssl/aes.h> 168#include "openbsd-compat/openssl-compat.h"
169#ifndef USE_BUILTIN_RIJNDAEL
170# include <openssl/aes.h>
171#endif
169typedef AES_KEY aes_int_key[1]; 172typedef AES_KEY aes_int_key[1];
170#define aes_encryption(in,out,int_key) \ 173#define aes_encryption(in,out,int_key) \
171 AES_encrypt((u_char *)(in),(u_char *)(out),(AES_KEY *)int_key) 174 AES_encrypt((u_char *)(in),(u_char *)(out),(AES_KEY *)int_key)