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