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 --- seed.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'seed.h') diff --git a/seed.h b/seed.h index 554db308..4231b105 100644 --- a/seed.h +++ b/seed.h @@ -1,8 +1,8 @@ // seed.h - originally written and placed in the public domain by Wei Dai -//! \file seed.h -//! \brief Classes for the SEED block cipher -//! \since Crypto++ 5.6.0 +/// \file seed.h +/// \brief Classes for the SEED block cipher +/// \since Crypto++ 5.6.0 #ifndef CRYPTOPP_SEED_H #define CRYPTOPP_SEED_H @@ -12,18 +12,18 @@ NAMESPACE_BEGIN(CryptoPP) -//! \class SEED_Info -//! \brief SEED block cipher information -//! \since Crypto++ 5.6.0 +/// \class SEED_Info +/// \brief SEED block cipher information +/// \since Crypto++ 5.6.0 struct SEED_Info : public FixedBlockSize<16>, public FixedKeyLength<16>, public FixedRounds<16> { CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "SEED";} }; -//! \class SEED -//! \brief SEED block cipher -//! \sa SEED -//! \since Crypto++ 5.6.0 +/// \class SEED +/// \brief SEED block cipher +/// \sa SEED +/// \since Crypto++ 5.6.0 class SEED : public SEED_Info, public BlockCipherDocumentation { class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl -- cgit v1.2.1