summaryrefslogtreecommitdiff
path: root/gost.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 /gost.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 'gost.h')
-rw-r--r--gost.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/gost.h b/gost.h
index 851189ce..43f60a8c 100644
--- a/gost.h
+++ b/gost.h
@@ -1,7 +1,7 @@
// gost.h - originally written and placed in the public domain by Wei Dai
-//! \file gost.h
-//! \brief Classes for the GIST block cipher
+/// \file gost.h
+/// \brief Classes for the GIST block cipher
#ifndef CRYPTOPP_GOST_H
#define CRYPTOPP_GOST_H
@@ -11,20 +11,20 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class GOST_Info
-//! \brief GOST block cipher information
+/// \class GOST_Info
+/// \brief GOST block cipher information
struct GOST_Info : public FixedBlockSize<8>, public FixedKeyLength<32>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "GOST";}
};
-//! \class GOST
-//! \brief GOST block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/GOST">GOST</a>
+/// \class GOST
+/// \brief GOST block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/GOST">GOST</a>
class GOST : public GOST_Info, public BlockCipherDocumentation
{
- //! \class Base
- //! \brief GOST block cipher default operation
+ /// \class Base
+ /// \brief GOST block cipher default operation
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<GOST_Info>
{
public:
@@ -40,16 +40,16 @@ class GOST : public GOST_Info, public BlockCipherDocumentation
FixedSizeSecBlock<word32, 8> m_key;
};
- //! \class Enc
- //! \brief GOST block cipher encryption operation
+ /// \class Enc
+ /// \brief GOST block cipher encryption operation
class CRYPTOPP_NO_VTABLE Enc : public Base
{
public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
};
- //! \class Dec
- //! \brief GOST block cipher decryption operation
+ /// \class Dec
+ /// \brief GOST block cipher decryption operation
class CRYPTOPP_NO_VTABLE Dec : public Base
{
public: