summaryrefslogtreecommitdiff
path: root/serpent.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 /serpent.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 'serpent.h')
-rw-r--r--serpent.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/serpent.h b/serpent.h
index 65f014d6..277887f3 100644
--- a/serpent.h
+++ b/serpent.h
@@ -1,7 +1,7 @@
// serpent.h - originally written and placed in the public domain by Wei Dai
-//! \file serpent.h
-//! \brief Classes for the Serpent block cipher
+/// \file serpent.h
+/// \brief Classes for the Serpent block cipher
#ifndef CRYPTOPP_SERPENT_H
#define CRYPTOPP_SERPENT_H
@@ -11,15 +11,15 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class Serpent_Info
-//! \brief Serpent block cipher information
+/// \class Serpent_Info
+/// \brief Serpent block cipher information
struct Serpent_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public FixedRounds<32>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Serpent";}
};
-//! \class Serpent
-//! \brief Serpent block cipher
+/// \class Serpent
+/// \brief Serpent block cipher
/// \sa <a href="http://www.cryptopp.com/wiki/Serpent">Serpent</a>
class Serpent : public Serpent_Info, public BlockCipherDocumentation
{