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