summaryrefslogtreecommitdiff
path: root/lubyrack.h
diff options
context:
space:
mode:
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
{