diff options
author | lloyd <[email protected]> | 2012-12-07 13:42:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-12-07 13:42:43 +0000 |
commit | 0011d342f3e1c589bd226c3637c10c15b2b7cf73 (patch) | |
tree | 59298c58a3f9555344d6920fcc268b61504f2af6 /src/block/kasumi/kasumi.h | |
parent | 990b962b8f91717db6654c209c9a91e2440d1442 (diff) | |
parent | 12c128c1fbb483ae9042b47fc544adf0e55d0693 (diff) |
merge of '89aeac10a9f26bde460f79731880bb728caf6312'
and 'e13b86dad266d168e462d0f0fe87e9e5f94e36a6'
Diffstat (limited to 'src/block/kasumi/kasumi.h')
-rw-r--r-- | src/block/kasumi/kasumi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/kasumi/kasumi.h b/src/block/kasumi/kasumi.h index 571085612..b91a2eb77 100644 --- a/src/block/kasumi/kasumi.h +++ b/src/block/kasumi/kasumi.h @@ -21,7 +21,7 @@ class BOTAN_DLL KASUMI : public Block_Cipher_Fixed_Params<8, 16> void encrypt_n(const byte in[], byte out[], size_t blocks) const; void decrypt_n(const byte in[], byte out[], size_t blocks) const; - void clear() { EK.clear(); } + void clear(); std::string name() const { return "KASUMI"; } BlockCipher* clone() const { return new KASUMI; } private: |