aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/cascade
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-15 23:33:00 +0000
committerlloyd <[email protected]>2010-06-15 23:33:00 +0000
commit49c18ab9131cd1a36e5e90bbfc18ef3f33361d50 (patch)
treede69a5edea7128380a046598fcac66c064f32b4a /src/block/cascade
parent76b57a7c4656f0f5759c34efe8bab664b49cd21d (diff)
More Doxygen updates
Diffstat (limited to 'src/block/cascade')
-rw-r--r--src/block/cascade/cascade.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/block/cascade/cascade.h b/src/block/cascade/cascade.h
index 263a9e8a1..abd9b015d 100644
--- a/src/block/cascade/cascade.h
+++ b/src/block/cascade/cascade.h
@@ -25,6 +25,11 @@ class BOTAN_DLL Cascade_Cipher : public BlockCipher
std::string name() const;
BlockCipher* clone() const;
+ /**
+ * Create a cascade of two block ciphers
+ * @param cipher1 the first cipher
+ * @param cipher2 the second cipher
+ */
Cascade_Cipher(BlockCipher* cipher1, BlockCipher* cipher2);
~Cascade_Cipher();