summaryrefslogtreecommitdiff
path: root/rc5.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-26 00:38:51 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-26 00:38:51 -0400
commitc77029f142e053ee6b1735144abe82baf4bd96d9 (patch)
tree5b7ecf1cd592aa3a3c6577eb584f9d59214f0ee2 /rc5.h
parent374105198d4472f511f23300aaa6912079173c3e (diff)
downloadcryptopp-git-c77029f142e053ee6b1735144abe82baf4bd96d9.tar.gz
Updated documentation for Crypto++ 1.0 algorithms
Diffstat (limited to 'rc5.h')
-rw-r--r--rc5.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/rc5.h b/rc5.h
index b76a5217..feab5fbd 100644
--- a/rc5.h
+++ b/rc5.h
@@ -13,6 +13,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \class RC5_Info
//! \brief RC5 block cipher information
+//! \since Crypto++ 1.0
struct RC5_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 0, 255>, public VariableRounds<16>
{
CRYPTOPP_CONSTEXPR static const char *StaticAlgorithmName() {return "RC5";}
@@ -22,6 +23,7 @@ struct RC5_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 0, 255>
//! \class RC5
//! \brief RC5 block cipher
//! \sa <a href="http://www.weidai.com/scan-mirror/cs.html#RC5">RC5</a>
+//! \since Crypto++ 1.0
class RC5 : public RC5_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<RC5_Info>