diff options
Diffstat (limited to 'src/block/lion/lion.h')
-rw-r--r-- | src/block/lion/lion.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/block/lion/lion.h b/src/block/lion/lion.h index 07556399b..bba4e6f30 100644 --- a/src/block/lion/lion.h +++ b/src/block/lion/lion.h @@ -32,7 +32,15 @@ class BOTAN_DLL Lion : public BlockCipher std::string name() const; BlockCipher* clone() const; - Lion(HashFunction*, StreamCipher*, u32bit); + /** + * @param hash the hash to use internally + * @param cipher the stream cipher to use internally + * @param block_size the size of the block to use + */ + Lion(HashFunction* hash, + StreamCipher* cipher, + u32bit block_size); + ~Lion() { delete hash; delete cipher; } private: void key_schedule(const byte[], u32bit); |