summaryrefslogtreecommitdiff
path: root/shark.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 /shark.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 'shark.h')
-rw-r--r--shark.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/shark.h b/shark.h
index d2852827..a39c47a0 100644
--- a/shark.h
+++ b/shark.h
@@ -1,7 +1,7 @@
// shark.h - originally written and placed in the public domain by Wei Dai
-//! \file shark.h
-//! \brief Classes for the SHARK block cipher
+/// \file shark.h
+/// \brief Classes for the SHARK block cipher
#ifndef CRYPTOPP_SHARK_H
#define CRYPTOPP_SHARK_H
@@ -12,20 +12,20 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class SHARK_Info
-//! \brief SHARK block cipher information
+/// \class SHARK_Info
+/// \brief SHARK block cipher information
struct SHARK_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, public VariableRounds<6, 2>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "SHARK-E";}
};
-//! \class SHARK
-//! \brief SHARK block cipher
+/// \class SHARK
+/// \brief SHARK block cipher
/// <a href="http://www.cryptopp.com/wiki/SHARK-E">SHARK-E</a>
class SHARK : public SHARK_Info, public BlockCipherDocumentation
{
- //! \class Base
- //! \brief SHARK block cipher default operation
+ /// \class Base
+ /// \brief SHARK block cipher default operation
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<SHARK_Info>
{
public:
@@ -36,8 +36,8 @@ class SHARK : public SHARK_Info, public BlockCipherDocumentation
SecBlock<word64> m_roundKeys;
};
- //! \class Enc
- //! \brief SHARK block cipher encryption operation
+ /// \class Enc
+ /// \brief SHARK block cipher encryption operation
class CRYPTOPP_NO_VTABLE Enc : public Base
{
public:
@@ -51,8 +51,8 @@ class SHARK : public SHARK_Info, public BlockCipherDocumentation
static const word64 cbox[8][256];
};
- //! \class Dec
- //! \brief SHARK block cipher decryption operation
+ /// \class Dec
+ /// \brief SHARK block cipher decryption operation
class CRYPTOPP_NO_VTABLE Dec : public Base
{
public: