summaryrefslogtreecommitdiff
path: root/mdc.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 /mdc.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 'mdc.h')
-rw-r--r--mdc.h22
1 files changed, 11 insertions, 11 deletions
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 <class B>
struct MDC_Info : public FixedBlockSize<B::DIGESTSIZE>, public FixedKeyLength<B::BLOCKSIZE>
{
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 <a href="http://www.cryptopp.com/wiki/MDC">MDC</a>
+/// \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 <a href="http://www.cryptopp.com/wiki/MDC">MDC</a>
template <class H>
class MDC : public MDC_Info<H>
{
- //! \class Enc
- //! \brief MDC cipher encryption operation
+ /// \class Enc
+ /// \brief MDC cipher encryption operation
class CRYPTOPP_NO_VTABLE Enc : public BlockCipherImpl<MDC_Info<H> >
{
typedef typename H::HashWordType HashWordType;