[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Point readers of the code to opensslv.h, since everybody wh...
Update of /home/or/cvsroot/tor/src/common
In directory moria:/tmp/cvs-serv8431/src/common
Modified Files:
aes.c
Log Message:
Point readers of the code to opensslv.h, since everybody who sees 0x0090700f looks at me like some kind of loon
Index: aes.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/aes.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- aes.c 24 Sep 2005 16:37:24 -0000 1.23
+++ aes.c 24 Sep 2005 16:39:33 -0000 1.24
@@ -21,6 +21,8 @@
#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>