summaryrefslogtreecommitdiff
path: root/lubyrack.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 /lubyrack.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 'lubyrack.h')
-rw-r--r--lubyrack.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lubyrack.h b/lubyrack.h
index 25a75e84..4aadab2c 100644
--- a/lubyrack.h
+++ b/lubyrack.h
@@ -1,7 +1,7 @@
// lubyrack.h - originally written and placed in the public domain by Wei Dai
-//! \file lubyrack.h
-//! \brief Classes for the Luby-Rackoff block cipher
+/// \file lubyrack.h
+/// \brief Classes for the Luby-Rackoff block cipher
#ifndef CRYPTOPP_LUBYRACK_H
#define CRYPTOPP_LUBYRACK_H
@@ -11,16 +11,16 @@
NAMESPACE_BEGIN(CryptoPP)
-//! \class LR_Info
-//! \brief Luby-Rackoff block cipher information
+/// \class LR_Info
+/// \brief Luby-Rackoff block cipher information
template <class T>
struct LR_Info : public VariableKeyLength<16, 0, 2*(INT_MAX/2), 2>, public FixedBlockSize<2*T::DIGESTSIZE>
{
static std::string StaticAlgorithmName() {return std::string("LR/")+T::StaticAlgorithmName();}
};
-//! \class LR
-//! \brief Luby-Rackoff block cipher
+/// \class LR
+/// \brief Luby-Rackoff block cipher
template <class T>
class LR : public LR_Info<T>, public BlockCipherDocumentation
{