summaryrefslogtreecommitdiff
path: root/xed25519.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-25 07:46:59 -0500
committerJeffrey Walton <noloader@gmail.com>2018-12-25 07:46:59 -0500
commitd5e529d81955530f40dbe02810c11a4fcdc7cafb (patch)
tree3670808535fe039a8c3479215f7d05ea3578dbd1 /xed25519.h
parent3b18e81bc1c113b005d679d7501530094c886297 (diff)
downloadcryptopp-git-d5e529d81955530f40dbe02810c11a4fcdc7cafb.tar.gz
Update documentation
Diffstat (limited to 'xed25519.h')
-rw-r--r--xed25519.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xed25519.h b/xed25519.h
index cd9ffee5..4f46fef0 100644
--- a/xed25519.h
+++ b/xed25519.h
@@ -95,7 +95,7 @@ public:
/// \brief Create a x25519 object
/// \param params public and private key
/// \details This constructor creates a x25519 object using existing parameters.
- /// The <tt>params</tt> can be created with <tt>DEREncode</tt>.
+ /// The <tt>params</tt> can be created with <tt>Save</tt>.
/// \note The public key is not validated.
x25519(BufferedTransformation &params);
@@ -427,7 +427,7 @@ struct ed25519Signer : public PK_Signer
/// \brief Create a ed25519Signer object
/// \param params public and private key
/// \details This constructor creates a ed25519Signer object using existing parameters.
- /// The <tt>params</tt> can be created with <tt>DEREncode</tt>.
+ /// The <tt>params</tt> can be created with <tt>Save</tt>.
/// \note The public key is not validated.
ed25519Signer(BufferedTransformation &params);
@@ -554,14 +554,14 @@ struct ed25519Verifier : public PK_Verifier
/// \brief Create a ed25519Verifier object
/// \param params public and private key
/// \details This constructor creates a ed25519Verifier object using existing parameters.
- /// The <tt>params</tt> can be created with <tt>DEREncode</tt>.
+ /// The <tt>params</tt> can be created with <tt>Save</tt>.
/// \note The public key is not validated.
ed25519Verifier(BufferedTransformation &params);
/// \brief Create a ed25519Verifier object
/// \param signer ed25519 signer object
/// \details This constructor creates a ed25519Verifier object using existing parameters.
- /// The <tt>params</tt> can be created with <tt>DEREncode</tt>.
+ /// The <tt>params</tt> can be created with <tt>Save</tt>.
/// \note The public key is not validated.
ed25519Verifier(const ed25519Signer& signer);