summaryrefslogtreecommitdiff
path: root/rabin.h
diff options
context:
space:
mode:
Diffstat (limited to 'rabin.h')
-rw-r--r--rabin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/rabin.h b/rabin.h
index f321271..7e74025 100644
--- a/rabin.h
+++ b/rabin.h
@@ -10,7 +10,7 @@
NAMESPACE_BEGIN(CryptoPP)
-//! Rabin
+//! _
class RabinFunction : public TrapdoorFunction, public PublicKey
{
typedef RabinFunction ThisClass;
@@ -42,7 +42,7 @@ protected:
Integer m_n, m_r, m_s;
};
-//! Invertible Rabin
+//! _
class InvertibleRabinFunction : public RabinFunction, public TrapdoorFunctionInverse, public PrivateKey
{
typedef InvertibleRabinFunction ThisClass;
@@ -77,7 +77,7 @@ protected:
Integer m_p, m_q, m_u;
};
-//! .
+//! Rabin
struct Rabin
{
static std::string StaticAlgorithmName() {return "Rabin-Crypto++Variant";}
@@ -85,13 +85,13 @@ struct Rabin
typedef InvertibleRabinFunction PrivateKey;
};
-//! .
+//! Rabin encryption
template <class STANDARD>
struct RabinES : public TF_ES<STANDARD, Rabin>
{
};
-//! .
+//! Rabin signature
template <class STANDARD, class H>
struct RabinSS : public TF_SS<STANDARD, H, Rabin>
{