summaryrefslogtreecommitdiff
path: root/serpent.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-12-05 14:22:18 +0000
committerweidai <weidai11@users.noreply.github.com>2007-12-05 14:22:18 +0000
commit063411369fe0646f4b4a6a05bbb6b329d101368c (patch)
treefd1a0dabc839bdd7d0db2ca3f6099b2561de7430 /serpent.h
parent89eb752f03b77eb8ef74163803bf617ddfba1cd9 (diff)
downloadcryptopp-git-063411369fe0646f4b4a6a05bbb6b329d101368c.tar.gz
change minimum key size to 0
Diffstat (limited to 'serpent.h')
-rw-r--r--serpent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/serpent.h b/serpent.h
index 39e63d04..f7ee8d61 100644
--- a/serpent.h
+++ b/serpent.h
@@ -10,7 +10,7 @@
NAMESPACE_BEGIN(CryptoPP)
//! _
-struct Serpent_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 1, 32>, public FixedRounds<32>
+struct Serpent_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 0, 32>, public FixedRounds<32>
{
static const char *StaticAlgorithmName() {return "Serpent";}
};