summaryrefslogtreecommitdiff
path: root/rc5.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
commit61ec50dabe14c5d4582ac187706ea27645b3562b (patch)
tree18a2eebb7adc8c9556ce132d7081a105fa058d6b /rc5.h
parent16ebfa72bf130c4725e652e4d3688d97d3feb0ee (diff)
downloadcryptopp-git-61ec50dabe14c5d4582ac187706ea27645b3562b.tar.gz
Change Doxygen comment style from //! to ///
Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw
Diffstat (limited to 'rc5.h')
-rw-r--r--rc5.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/rc5.h b/rc5.h
index eb5a5400..0089a3ec 100644
--- a/rc5.h
+++ b/rc5.h
@@ -1,7 +1,7 @@
// rc5.h - originally written and placed in the public domain by Wei Dai
-//! \file rc5.h
-//! \brief Classes for the RC5 block cipher
+/// \file rc5.h
+/// \brief Classes for the RC5 block cipher
#ifndef CRYPTOPP_RC5_H
#define CRYPTOPP_RC5_H
@@ -11,19 +11,19 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class RC5_Info
-//! \brief RC5 block cipher information
-//! \since Crypto++ 1.0
+/// \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_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "RC5";}
typedef word32 RC5_WORD;
};
-//! \class RC5
-//! \brief RC5 block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/RC5">RC5</a>
-//! \since Crypto++ 1.0
+/// \class RC5
+/// \brief RC5 block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/RC5">RC5</a>
+/// \since Crypto++ 1.0
class RC5 : public RC5_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<RC5_Info>