diff options
Diffstat (limited to 'src/block/rc5/rc5.h')
-rw-r--r-- | src/block/rc5/rc5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/rc5/rc5.h b/src/block/rc5/rc5.h index 385c6b2b1..9a794d248 100644 --- a/src/block/rc5/rc5.h +++ b/src/block/rc5/rc5.h @@ -21,7 +21,7 @@ class BOTAN_DLL RC5 : public BlockCipher void encrypt_n(const byte in[], byte out[], u32bit blocks) const; void decrypt_n(const byte in[], byte out[], u32bit blocks) const; - void clear() { S.clear(); } + void clear() { zeroise(S); } std::string name() const; BlockCipher* clone() const { return new RC5(ROUNDS); } |