summaryrefslogtreecommitdiff
path: root/rabin.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2004-07-22 00:51:57 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2004-07-22 00:51:57 +0000
commita2828f6ae67c3d7294118a8144b1b2ec431237c4 (patch)
treefaff40f3429fb7fb70249c83afd5378f92ebdb31 /rabin.h
parente87d537834e72b242b4c16b99f0a40586940104b (diff)
downloadcryptopp-a2828f6ae67c3d7294118a8144b1b2ec431237c4.tar.gz
fix documentation, fix PanamaMAC, fix algorithm names
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@186 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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>
{