From 61ec50dabe14c5d4582ac187706ea27645b3562b Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 29 Nov 2017 10:54:33 -0500 Subject: Change Doxygen comment style from //! to /// Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw --- rc6.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'rc6.h') 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 RC6 +/// \class RC6 +/// \brief RC6 block cipher +/// \sa RC6 class RC6 : public RC6_Info, public BlockCipherDocumentation { class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl -- cgit v1.2.1