summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-09-24 16:39:33 +0000
committerNick Mathewson <nickm@torproject.org>2005-09-24 16:39:33 +0000
commit08733866005fabfe922cbe3dd7e2845b9f2035b3 (patch)
treeafc5475d5fee6cded6af762950add652d75513a9 /src
parentd661fde08265d017ab50a19cad34d48c208861c9 (diff)
downloadtor-08733866005fabfe922cbe3dd7e2845b9f2035b3.tar.gz
tor-08733866005fabfe922cbe3dd7e2845b9f2035b3.zip
Point readers of the code to opensslv.h, since everybody who sees 0x0090700f looks at me like some kind of loon
svn:r5140
Diffstat (limited to 'src')
-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>