From c9b00c14fd9c238ac3a797a53b3c01c4ab92f00e Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 22 Jan 2018 20:13:18 -0500 Subject: Update documentation --- rc6.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rc6.h') 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 RC6 +/// \since Crypto++ 3.0 class RC6 : public RC6_Info, public BlockCipherDocumentation { class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl -- cgit v1.2.1