summaryrefslogtreecommitdiff
path: root/rc6.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 /rc6.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 'rc6.h')
-rw-r--r--rc6.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/rc6.h b/rc6.h
index 45a8f138..4cc0978d 100644
--- a/rc6.h
+++ b/rc6.h
@@ -1,7 +1,7 @@
// rc6.h - originally written and placed in the public domain by Wei Dai
-//! \file rc6.h
-//! \brief Classes for the RC6 block cipher
+/// \file rc6.h
+/// \brief Classes for the RC6 block cipher
#ifndef CRYPTOPP_RC6_H
#define CRYPTOPP_RC6_H
@@ -11,17 +11,17 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class RC6_Info
-//! \brief RC6 block cipher information
+/// \class RC6_Info
+/// \brief RC6 block cipher information
struct RC6_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public VariableRounds<20>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "RC6";}
typedef word32 RC6_WORD;
};
-//! \class RC6
-//! \brief RC6 block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/RC6">RC6</a>
+/// \class RC6
+/// \brief RC6 block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/RC6">RC6</a>
class RC6 : public RC6_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<RC6_Info>