aboutsummaryrefslogtreecommitdiffstats
path: root/modules/alg_ia32/serpent.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-08-15 11:45:59 +0000
committerlloyd <[email protected]>2006-08-15 11:45:59 +0000
commit1201cc618d3e2828eb683337680a6bc8b7540759 (patch)
tree4e6be561a2b34ae8e84944983feb476bcc9ba254 /modules/alg_ia32/serpent.cpp
parent9878bca6ac9ea94c3cba87a06144e93e12fd933b (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.cpp1
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);
}