summaryrefslogtreecommitdiff
path: root/skipjack.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 /skipjack.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 'skipjack.h')
-rw-r--r--skipjack.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/skipjack.h b/skipjack.h
index 6fcf7031..01743224 100644
--- a/skipjack.h
+++ b/skipjack.h
@@ -1,7 +1,7 @@
// skipjack.h - originally written and placed in the public domain by Wei Dai
-//! \file skipjack.h
-//! \brief Classes for the SKIPJACK block cipher
+/// \file skipjack.h
+/// \brief Classes for the SKIPJACK block cipher
#ifndef CRYPTOPP_SKIPJACK_H
#define CRYPTOPP_SKIPJACK_H
@@ -11,20 +11,20 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class SKIPJACK_Info
-//! \brief SKIPJACK block cipher information
+/// \class SKIPJACK_Info
+/// \brief SKIPJACK block cipher information
struct SKIPJACK_Info : public FixedBlockSize<8>, public FixedKeyLength<10>
{
CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "SKIPJACK";}
};
-//! \class SKIPJACK
-//! \brief SKIPJACK block cipher
-//! \sa <a href="http://www.cryptopp.com/wiki/SKIPJACK">SKIPJACK</a>
+/// \class SKIPJACK
+/// \brief SKIPJACK block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/SKIPJACK">SKIPJACK</a>
class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation
{
- //! \class Base
- //! \brief SKIPJACK block cipher default operation
+ /// \class Base
+ /// \brief SKIPJACK block cipher default operation
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<SKIPJACK_Info>
{
public:
@@ -37,8 +37,8 @@ class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation
FixedSizeSecBlock<byte, 10*256> tab;
};
- //! \class Enc
- //! \brief SKIPJACK block cipher encryption operation
+ /// \class Enc
+ /// \brief SKIPJACK block cipher encryption operation
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Enc : public Base
{
public:
@@ -48,8 +48,8 @@ class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation
static const word32 Te[4][256];
};
- //! \class Dec
- //! \brief SKIPJACK block cipher decryption operation
+ /// \class Dec
+ /// \brief SKIPJACK block cipher decryption operation
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Dec : public Base
{
public: