summaryrefslogtreecommitdiff
path: root/src/common/aes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/aes.c')
-rw-r--r--src/common/aes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/aes.c b/src/common/aes.c
index 2dabdb18e4..52ec6e0bc4 100644
--- a/src/common/aes.c
+++ b/src/common/aes.c
@@ -21,6 +21,8 @@ const char aes_c_id[] = "$Id$";
#include "aes.h"
#include "util.h"
+/* Use OpenSSL's AES if we're running 0.9.7 or later. (The f at the end of
+ * the version below means "release"; see opensslv.h) */
#if OPENSSL_VERSION_NUMBER >= 0x0090700fl
#define USE_OPENSSL_AES
#include <openssl/aes.h>