summaryrefslogtreecommitdiff
path: root/rc6.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-22 20:13:18 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-22 20:13:18 -0500
commitc9b00c14fd9c238ac3a797a53b3c01c4ab92f00e (patch)
treec1b079d0bc66e3d641121fe09831cd746e9913ba /rc6.h
parente3d79bf98c3d068c4be602c544a0b2dec207d5a1 (diff)
downloadcryptopp-git-c9b00c14fd9c238ac3a797a53b3c01c4ab92f00e.tar.gz
Update documentation
Diffstat (limited to 'rc6.h')
-rw-r--r--rc6.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/rc6.h b/rc6.h
index ce2227d6..1a41ab2c 100644
--- a/rc6.h
+++ b/rc6.h
@@ -2,6 +2,7 @@
/// \file rc6.h
/// \brief Classes for the RC6 block cipher
+/// \since Crypto++ 3.0
#ifndef CRYPTOPP_RC6_H
#define CRYPTOPP_RC6_H
@@ -12,6 +13,7 @@
NAMESPACE_BEGIN(CryptoPP)
/// \brief RC6 block cipher information
+/// \since Crypto++ 3.0
struct RC6_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public VariableRounds<20>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "RC6";}
@@ -20,6 +22,7 @@ struct RC6_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32
/// \brief RC6 block cipher
/// \sa <a href="http://www.cryptopp.com/wiki/RC6">RC6</a>
+/// \since Crypto++ 3.0
class RC6 : public RC6_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<RC6_Info>