packages feed

cipher-aes128 0.6.2 → 0.6.3

raw patch · 5 files changed

+4/−5 lines, 5 files

Files

Benchmark/bench.hs view
@@ -2,7 +2,6 @@ import Crypto.Cipher.AES import Crypto.Classes import Crypto.Types-import Crypto.Modes (zeroIV) import Criterion import Criterion.Main import System.Entropy
cbits/aes.c view
@@ -243,7 +243,7 @@         case 32: key->nbr = 14; key->strength = 2; break;         } #if defined(ARCH_X86) && defined(WITH_AESNI)-        initialize_hw(tmd_initialize_table_ni);+        tmd_initialize_hw(tmd_initialize_table_ni); #endif         init_f _init = GET_INIT(key->strength);         _init(key, origkey, size);
cbits/cpu.c view
@@ -54,7 +54,7 @@ }  #ifdef USE_AESNI-void initialize_hw(void (*init_table)(int, int))+void tmd_initialize_hw(void (*init_table)(int, int)) { 	static int inited = 0; 	if (inited == 0) {
cbits/cpu.h view
@@ -37,7 +37,7 @@ #endif  #ifdef USE_AESNI-void initialize_hw(void (*init_table)(int, int));+void tmd_initialize_hw(void (*init_table)(int, int)); #else #define initialize_hw(init_table) 	(0) #endif
cipher-aes128.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                cipher-aes128-version:             0.6.2+version:             0.6.3 synopsis:            AES and common modes using AES-NI when available. description:         Cipher-aes128 is an implementation of AES and common modes of operation.  It borrows Hanquez's C AES code (see 'cipher-aes') but                      is unique due to including compile-time detection of