mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Update documentation
This commit is contained in:
parent
3b18e81bc1
commit
d5e529d819
@ -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 ¶ms);
|
||||
|
||||
@ -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 ¶ms);
|
||||
|
||||
@ -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 ¶ms);
|
||||
|
||||
/// \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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user