Switch to OpenSSL AES

This commit is contained in:
Keith Winstein
2012-07-20 16:10:12 -04:00
parent dc7253cbb7
commit 9827d123f8
+2 -2
View File
@@ -48,8 +48,8 @@
/* This implementation has built-in support for multiple AES APIs. Set any /* This implementation has built-in support for multiple AES APIs. Set any
/ one of the following to non-zero to specify which to use. */ / one of the following to non-zero to specify which to use. */
#define USE_OPENSSL_AES 0 /* http://openssl.org */ #define USE_OPENSSL_AES 1 /* http://openssl.org */
#define USE_REFERENCE_AES 1 /* Internet search: rijndael-alg-fst.c */ #define USE_REFERENCE_AES 0 /* Internet search: rijndael-alg-fst.c */
#define USE_AES_NI 0 /* Uses compiler's intrinsics */ #define USE_AES_NI 0 /* Uses compiler's intrinsics */
/* During encryption and decryption, various "L values" are required. /* During encryption and decryption, various "L values" are required.