diff options
author | lloyd <[email protected]> | 2006-08-15 13:37:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-15 13:37:45 +0000 |
commit | 2a8abcdd38eb4311cf6b2b1a9899b5ba16fa6bcf (patch) | |
tree | 41e2aaa98d300c3c00ef0875164e7a8247b4e29e /include | |
parent | a2674f5bcdb02d0ab51f086b4b56aa7b8838bbce (diff) |
Replace Serpent's key_xor function with a macro, so the header can be
shared between the C++ and assembly versions.
Diffstat (limited to 'include')
-rw-r--r-- | include/serpent.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/serpent.h b/include/serpent.h index c1722464e..85e0345d0 100644 --- a/include/serpent.h +++ b/include/serpent.h @@ -25,7 +25,6 @@ class Serpent : public BlockCipher void dec(const byte[], byte[]) const; void key(const byte[], u32bit); - void key_xor(u32bit, u32bit&, u32bit&, u32bit&, u32bit&) const; SecureBuffer<u32bit, 132> round_key; }; |