diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-24 16:39:33 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-24 16:39:33 +0000 |
commit | 08733866005fabfe922cbe3dd7e2845b9f2035b3 (patch) | |
tree | afc5475d5fee6cded6af762950add652d75513a9 /src | |
parent | d661fde08265d017ab50a19cad34d48c208861c9 (diff) | |
download | tor-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.c | 2 |
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> |