summaryrefslogtreecommitdiff
path: root/shacal2.h
diff options
context:
space:
mode:
Diffstat (limited to 'shacal2.h')
-rw-r--r--shacal2.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/shacal2.h b/shacal2.h
index 70532102..d635ced9 100644
--- a/shacal2.h
+++ b/shacal2.h
@@ -11,13 +11,16 @@
NAMESPACE_BEGIN(CryptoPP)
-//! _
+//! \class SHACAL2_Info
+//! \brief SHACAL2 block cipher information
struct SHACAL2_Info : public FixedBlockSize<32>, public VariableKeyLength<16, 16, 64>
{
static const char *StaticAlgorithmName() {return "SHACAL-2";}
};
-/// <a href="http://www.weidai.com/scan-mirror/cs.html#SHACAL-2">SHACAL-2</a>
+//! \class SHACAL2
+//! \brief SHACAL2 block cipher
+//! \sa <a href="http://www.weidai.com/scan-mirror/cs.html#SHACAL-2">SHACAL-2</a>
class SHACAL2 : public SHACAL2_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<SHACAL2_Info>