From 9827d123f83e2d59dfe66a5176699f0e3b95e810 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Fri, 20 Jul 2012 16:10:12 -0400 Subject: [PATCH] Switch to OpenSSL AES --- src/crypto/ocb.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crypto/ocb.cc b/src/crypto/ocb.cc index 1f14fa3e3..a887bd4fe 100644 --- a/src/crypto/ocb.cc +++ b/src/crypto/ocb.cc @@ -48,8 +48,8 @@ /* This implementation has built-in support for multiple AES APIs. Set any / one of the following to non-zero to specify which to use. */ -#define USE_OPENSSL_AES 0 /* http://openssl.org */ -#define USE_REFERENCE_AES 1 /* Internet search: rijndael-alg-fst.c */ +#define USE_OPENSSL_AES 1 /* http://openssl.org */ +#define USE_REFERENCE_AES 0 /* Internet search: rijndael-alg-fst.c */ #define USE_AES_NI 0 /* Uses compiler's intrinsics */ /* During encryption and decryption, various "L values" are required.