aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/misty1/misty1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/misty1/misty1.h')
-rw-r--r--src/lib/block/misty1/misty1.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/block/misty1/misty1.h b/src/lib/block/misty1/misty1.h
index 17b617283..177c2c0b5 100644
--- a/src/lib/block/misty1/misty1.h
+++ b/src/lib/block/misty1/misty1.h
@@ -13,7 +13,7 @@
namespace Botan {
/**
-* MISTY1
+* MISTY1 with 8 rounds
*/
class BOTAN_DLL MISTY1 : public Block_Cipher_Fixed_Params<8, 16>
{
@@ -24,12 +24,6 @@ class BOTAN_DLL MISTY1 : public Block_Cipher_Fixed_Params<8, 16>
void clear();
std::string name() const { return "MISTY1"; }
BlockCipher* clone() const { return new MISTY1; }
-
- /**
- * @param rounds the number of rounds. Must be 8 with the current
- * implementation
- */
- MISTY1(size_t rounds = 8);
private:
void key_schedule(const byte[], size_t);