aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/rc6/rc6.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/rc6/rc6.h')
-rw-r--r--src/block/rc6/rc6.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/block/rc6/rc6.h b/src/block/rc6/rc6.h
index d3270daf7..e30a267e6 100644
--- a/src/block/rc6/rc6.h
+++ b/src/block/rc6/rc6.h
@@ -21,11 +21,9 @@ class BOTAN_DLL RC6 : public Block_Cipher_Fixed_Params<16, 1, 32>
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() { zeroise(S); }
+ void clear() { S.clear(); }
std::string name() const { return "RC6"; }
BlockCipher* clone() const { return new RC6; }
-
- RC6() : S(44) {}
private:
void key_schedule(const byte[], size_t);