Преглед изворни кода

* Fully unrolling the AES now

svn: 968
Bryan Drewery пре 22 година
родитељ
комит
1ded6a8d5e
2 измењених фајлова са 2 додато и 1 уклоњено
  1. 1 0
      doc/UPDATES
  2. 1 1
      src/crypto/aes.h

+ 1 - 0
doc/UPDATES

@@ -23,6 +23,7 @@ This is a summary of ChangeLog basically.
 18.cmd_getkey now recognizes +private.
 19.Limits were not being set.
 20.No longer chmodding on CYGWIN
+21.The AES core should be slightly faster now.
 
 1.1.5
 

+ 1 - 1
src/crypto/aes.h

@@ -27,7 +27,7 @@ typedef unsigned char u8;
 #define MAXNR   14
 
 /* This controls loop-unrolling in aes.c */
-#undef FULL_UNROLL
+#define FULL_UNROLL
 
 int AES_set_encrypt_key(const unsigned char *, const int, AES_KEY *);
 int AES_set_decrypt_key(const unsigned char *, const int, AES_KEY *);