summaryrefslogtreecommitdiff
path: root/rc5.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-12-13 23:53:50 -0500
committerJeffrey Walton <noloader@gmail.com>2015-12-13 23:53:50 -0500
commitd9502a6ea93d7d5a5de6a0c8c28d807efeb1559b (patch)
tree488173a182613a9a21f71e3197dbdd9cd6882e44 /rc5.h
parent5a28b8e184f54e71a4148601f7da78d67a7e9590 (diff)
downloadcryptopp-git-d9502a6ea93d7d5a5de6a0c8c28d807efeb1559b.tar.gz
Updated documentation
Diffstat (limited to 'rc5.h')
-rw-r--r--rc5.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/rc5.h b/rc5.h
index 9f125dd0..b1012737 100644
--- a/rc5.h
+++ b/rc5.h
@@ -11,14 +11,17 @@
NAMESPACE_BEGIN(CryptoPP)
-//! _
+//! \class RC5_Info
+//! \brief RC5 block cipher information
struct RC5_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 0, 255>, public VariableRounds<16>
{
static const char *StaticAlgorithmName() {return "RC5";}
typedef word32 RC5_WORD;
};
-/// <a href="http://www.weidai.com/scan-mirror/cs.html#RC5">RC5</a>
+//! \class RC5
+//! \brief RC5 block cipher
+//! \sa <a href="http://www.weidai.com/scan-mirror/cs.html#RC5">RC5</a>
class RC5 : public RC5_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<RC5_Info>