diff options
author | lloyd <[email protected]> | 2006-08-15 11:45:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-15 11:45:59 +0000 |
commit | 1201cc618d3e2828eb683337680a6bc8b7540759 (patch) | |
tree | 4e6be561a2b34ae8e84944983feb476bcc9ba254 /modules/alg_ia32/serpent.cpp | |
parent | 9878bca6ac9ea94c3cba87a06144e93e12fd933b (diff) |
Have the expansion loop in the key schedule take advantage of free
registers to load words we will need in advance.
Diffstat (limited to 'modules/alg_ia32/serpent.cpp')
-rw-r--r-- | modules/alg_ia32/serpent.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/alg_ia32/serpent.cpp b/modules/alg_ia32/serpent.cpp index 964b677a1..fd489574b 100644 --- a/modules/alg_ia32/serpent.cpp +++ b/modules/alg_ia32/serpent.cpp @@ -43,7 +43,6 @@ void Serpent::key(const byte key[], u32bit length) W[length / 4] |= u32bit(1) << ((length%4)*8); serpent_key_schedule(W); - round_key.copy(W + 8, 132); } |