summaryrefslogtreecommitdiff
path: root/seed.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 /seed.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 'seed.h')
-rw-r--r--seed.h20
1 files changed, 10 insertions, 10 deletions
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 <a href="http://www.cryptolounge.org/wiki/SEED">SEED</a>
-//! \since Crypto++ 5.6.0
+/// \class SEED
+/// \brief SEED block cipher
+/// \sa <a href="http://www.cryptolounge.org/wiki/SEED">SEED</a>
+/// \since Crypto++ 5.6.0
class SEED : public SEED_Info, public BlockCipherDocumentation
{
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<SEED_Info>