瀏覽代碼

Point readers of the code to opensslv.h, since everybody who sees 0x0090700f looks at me like some kind of loon

svn:r5140
Nick Mathewson 18 年之前
父節點
當前提交
0873386600
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/common/aes.c

+ 2 - 0
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>