summaryrefslogtreecommitdiff
path: root/mars.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 /mars.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 'mars.h')
-rw-r--r--mars.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mars.h b/mars.h
index da648526..120cb278 100644
--- a/mars.h
+++ b/mars.h
@@ -1,7 +1,7 @@
// mars.h - originally written and placed in the public domain by Wei Dai
-//! \file mars.h
-//! \brief Classes for the MARS block cipher (IBM AES submission)
+/// \file mars.h
+/// \brief Classes for the MARS block cipher (IBM AES submission)
#ifndef CRYPTOPP_MARS_H
#define CRYPTOPP_MARS_H
@@ -11,16 +11,16 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class MARS_Info
-//! \brief MARS block cipher information
+/// \class MARS_Info
+/// \brief MARS block cipher information
struct MARS_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 56, 8>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "MARS";}
};
-//! \class MARS
-//! \brief MARS block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/MARS">MARS</a>
+/// \class MARS
+/// \brief MARS block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/MARS">MARS</a>
class MARS : public MARS_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<MARS_Info>