summaryrefslogtreecommitdiff
path: root/wake.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 /wake.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 'wake.h')
-rw-r--r--wake.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/wake.h b/wake.h
index 81060801..8f1269e7 100644
--- a/wake.h
+++ b/wake.h
@@ -1,7 +1,7 @@
// wake.h - originally written and placed in the public domain by Wei Dai
-//! \file wake.h
-//! \brief Classes for WAKE stream cipher
+/// \file wake.h
+/// \brief Classes for WAKE stream cipher
#ifndef CRYPTOPP_WAKE_H
#define CRYPTOPP_WAKE_H
@@ -12,10 +12,10 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class WAKE_OFB_Info
-//! \brief WAKE stream cipher information
-//! \tparam B Endianness of the stream cipher
-//! \since Crypto++ 1.0
+/// \class WAKE_OFB_Info
+/// \brief WAKE stream cipher information
+/// \tparam B Endianness of the stream cipher
+/// \since Crypto++ 1.0
template <class B = BigEndian>
struct WAKE_OFB_Info : public FixedKeyLength<32>
{
@@ -32,10 +32,10 @@ protected:
word32 r3, r4, r5, r6;
};
-//! \class WAKE_Policy
-//! \brief WAKE stream cipher operation
-//! \tparam B Endianness of the stream cipher
-//! \since Crypto++ 1.0
+/// \class WAKE_Policy
+/// \brief WAKE stream cipher operation
+/// \tparam B Endianness of the stream cipher
+/// \since Crypto++ 1.0
template <class B = BigEndian>
class CRYPTOPP_NO_VTABLE WAKE_Policy : public AdditiveCipherConcretePolicy<word32, 1, 64>, protected WAKE_Base
{
@@ -46,10 +46,10 @@ protected:
bool CipherIsRandomAccess() const {return false;}
};
-//! \class WAKE_OFB
-//! \brief WAKE stream cipher
-//! \tparam B Endianness of the stream cipher
-//! \since Crypto++ 1.0
+/// \class WAKE_OFB
+/// \brief WAKE stream cipher
+/// \tparam B Endianness of the stream cipher
+/// \since Crypto++ 1.0
template <class B = BigEndian>
struct WAKE_OFB : public WAKE_OFB_Info<B>, public SymmetricCipherDocumentation
{