summaryrefslogtreecommitdiff
path: root/idea.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 /idea.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 'idea.h')
-rw-r--r--idea.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/idea.h b/idea.h
index 9957c9c9..8ca362e3 100644
--- a/idea.h
+++ b/idea.h
@@ -1,7 +1,7 @@
// idea.h - originally written and placed in the public domain by Wei Dai
-//! \file idea.h
-//! \brief Classes for the IDEA block cipher
+/// \file idea.h
+/// \brief Classes for the IDEA block cipher
#ifndef CRYPTOPP_IDEA_H
#define CRYPTOPP_IDEA_H
@@ -11,18 +11,18 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class IDEA_Info
-//! \brief IDEA block cipher information
-//! \since Crypto++ 1.0
+/// \class IDEA_Info
+/// \brief IDEA block cipher information
+/// \since Crypto++ 1.0
struct IDEA_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, public FixedRounds<8>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "IDEA";}
};
-//! \class IDEA
-//! \brief IDEA block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/IDEA">IDEA</a>
-//! \since Crypto++ 1.0
+/// \class IDEA
+/// \brief IDEA block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/IDEA">IDEA</a>
+/// \since Crypto++ 1.0
class IDEA : public IDEA_Info, public BlockCipherDocumentation
{
public: // made public for internal purposes