X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/1aac2117090afdae5cce245132f44bcc076fd837..5498741cc14208f105eb8341046536b21a0c31db:/umac.c diff --git a/umac.c b/umac.c index 29c202a2..c2fdcf44 100644 --- a/umac.c +++ b/umac.c @@ -165,7 +165,10 @@ static void STORE_UINT32_REVERSED(void *ptr, UINT32 x) #define AES_BLOCK_LEN 16 /* OpenSSL's AES */ -#include +#include "openbsd-compat/openssl-compat.h" +#ifndef USE_BUILTIN_RIJNDAEL +# include +#endif typedef AES_KEY aes_int_key[1]; #define aes_encryption(in,out,int_key) \ AES_encrypt((u_char *)(in),(u_char *)(out),(AES_KEY *)int_key)