summaryrefslogtreecommitdiff
path: root/xed25519.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-25 08:12:12 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-25 08:12:12 -0500
commit0d2067ab8dd22475ee1a25b3b2d7ce640e76024b (patch)
tree966998652bafa1c3c7f667eee814b0f6f266cf89 /xed25519.h
parent430a968ca842db36fba5da64709d0bba0ed0ef07 (diff)
downloadcryptopp-git-0d2067ab8dd22475ee1a25b3b2d7ce640e76024b.tar.gz
Update documentation
Diffstat (limited to 'xed25519.h')
-rw-r--r--xed25519.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xed25519.h b/xed25519.h
index 1877e181..b491c70c 100644
--- a/xed25519.h
+++ b/xed25519.h
@@ -275,7 +275,7 @@ protected:
std::vector<byte, AllocatorWithCleanup<byte> > m_msg;
};
-/// \brief ed25519 private key
+/// \brief Ed25519 private key
/// \details ed25519PrivateKey is somewhat of a hack. It needed to
/// provide DL_PrivateKey interface to fit into the existing
/// framework, but it lacks a lot of the internals of a true
@@ -388,7 +388,7 @@ protected:
mutable Integer m_x; // for DL_PrivateKey
};
-/// \brief ed25519 signature algorithm
+/// \brief Ed25519 signature algorithm
/// \since Crypto++ 8.0
struct ed25519Signer : public PK_Signer
{
@@ -476,7 +476,7 @@ protected:
// ****************** ed25519 Verifier *********************** //
-/// \brief ed25519 public key
+/// \brief Ed25519 public key
/// \details ed25519PublicKey is somewhat of a hack. It needed to
/// provide DL_PublicKey interface to fit into the existing
/// framework, but it lacks a lot of the internals of a true
@@ -544,7 +544,7 @@ protected:
mutable Integer m_y; // for DL_PublicKey
};
-/// \brief ed25519 signature verification algorithm
+/// \brief Ed25519 signature verification algorithm
/// \since Crypto++ 8.0
struct ed25519Verifier : public PK_Verifier
{
@@ -624,7 +624,7 @@ protected:
ed25519PublicKey m_key;
};
-/// \brief ed25519 signature scheme
+/// \brief Ed25519 signature scheme
/// \since Crypto++ 8.0
struct ed25519
{