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 --- mdc.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'mdc.h') diff --git a/mdc.h b/mdc.h index d5f1a881..18ddd2b7 100644 --- a/mdc.h +++ b/mdc.h @@ -3,8 +3,8 @@ #ifndef CRYPTOPP_MDC_H #define CRYPTOPP_MDC_H -//! \file mdc.h -//! \brief Classes for the MDC message digest +/// \file mdc.h +/// \brief Classes for the MDC message digest #include "seckey.h" #include "secblock.h" @@ -12,24 +12,24 @@ NAMESPACE_BEGIN(CryptoPP) -//! \class MDC_Info -//! \tparam B BlockCipher derived class -//! \brief MDC_Info cipher information +/// \class MDC_Info +/// \tparam B BlockCipher derived class +/// \brief MDC_Info cipher information template struct MDC_Info : public FixedBlockSize, public FixedKeyLength { static std::string StaticAlgorithmName() {return std::string("MDC/")+B::StaticAlgorithmName();} }; -//! \brief MDC cipher -//! \tparam H HashTransformation derived class -//! \details MDC() is a construction by Peter Gutmann to turn an iterated hash function into a PRF -//! \sa MDC +/// \brief MDC cipher +/// \tparam H HashTransformation derived class +/// \details MDC() is a construction by Peter Gutmann to turn an iterated hash function into a PRF +/// \sa MDC template class MDC : public MDC_Info { - //! \class Enc - //! \brief MDC cipher encryption operation + /// \class Enc + /// \brief MDC cipher encryption operation class CRYPTOPP_NO_VTABLE Enc : public BlockCipherImpl > { typedef typename H::HashWordType HashWordType; -- cgit v1.2.1