summaryrefslogtreecommitdiff
path: root/rabin.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2004-07-22 00:51:57 +0000
committerweidai <weidai11@users.noreply.github.com>2004-07-22 00:51:57 +0000
commit393ae4859a9d3df3c5aee304b4c65121b657f613 (patch)
treefaff40f3429fb7fb70249c83afd5378f92ebdb31 /rabin.h
parentad8043d50c19d94177a420fba5ef6e9fd15afff1 (diff)
downloadcryptopp-git-393ae4859a9d3df3c5aee304b4c65121b657f613.tar.gz
fix documentation, fix PanamaMAC, fix algorithm names
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 f3212715..7e74025d 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>
{