System::Security::Cryptography::ECDsaBotan class
Contents
[
Hide
]ECDsaBotan class
ECDsa algorithm in Botan form. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class ECDsaBotan : public System::Security::Cryptography::ECDsa
Methods
Method | Description |
---|---|
ECDsaBotan() | Constructor. Uses default parameters. |
ECDsaBotan(const ECParameters&) | Constructor. |
ECDsaBotan(const ECCurve&) | Constructor. |
ECDsaBotan(int32_t) | Constructor. |
ECDsaBotan(const Botan::ECDSA_PublicKey&) | Constructor. |
ECDsaBotan(const Botan::ECDSA_PrivateKey&) | Constructor. |
ExportExplicitParameters(bool) override | Exports explicit parameters. |
ExportParameters(bool) override | Exports named or explicit parameters. |
FromXmlString(String) override | Initializes object using XML-encoded parameters. Not implemented. |
FromXmlString(const String&, ECKeyXmlFormat) | Initializes object using XML-encoded parameters. Not implemented. |
GenerateKey(const ECCurve&) override | Generates a new public/private key pair for the specified curve. |
get_HashAlgorithm() const | Gets hash algortihm. |
HashData(ByteArrayPtr, int32_t, int32_t, HashAlgorithmName) override | Computes the hash value of the specified data array using the specified hash algorithm. |
HashData(StreamPtr, HashAlgorithmName) override | Computes the hash value of the specified binary stream using the specified hash algorithm. |
ImportParameters(const ECParameters&) override | Imports all parameters from data structure. |
set_HashAlgorithm(const HashAlgorithmName&) | Sets hash algortihm. |
set_KeySize(int32_t) override | Sets key size. |
SignData(const ByteArrayPtr&) | Computes the hash value of the specified data array, and signs the result. |
SignData(const ByteArrayPtr&, int32_t, int32_t) | Computes the hash value of the specified data array, and signs the result. |
SignData(const StreamPtr&) | Computes the hash value of the specified binary stream, and signs the result. |
virtual SignData(const ByteArrayPtr&, const HashAlgorithmName&) | RTTI information. |
virtual SignData(const ByteArrayPtr&, int32_t, int32_t, const HashAlgorithmName&) | RTTI information. |
virtual SignData(const StreamPtr&, const HashAlgorithmName&) | RTTI information. |
SignHash(const ByteArrayPtr&) override | Computes the signature of specified input value. |
ToXmlString(bool) override | Exports all parameters in XML format. Not implemented. |
ToXmlString(ECKeyXmlFormat) | Exports all parameters in XML format. |
VerifyData(const ByteArrayPtr&, const ByteArrayPtr&) | Verifies that the signature of the specified data is valid. |
VerifyData(const ByteArrayPtr&, int32_t, int32_t, const ByteArrayPtr&) | Verifies that the signature of the specified data is valid. |
VerifyData(const StreamPtr&, const ByteArrayPtr&) | Verifies that the signature of the specified binary stream is valid. |
VerifyData(const ByteArrayPtr&, const ByteArrayPtr&, const HashAlgorithmName&) | Verifies that the signature of the specified data is valid. |
VerifyData(const ByteArrayPtr&, int32_t, int32_t, const ByteArrayPtr&, const HashAlgorithmName&) | Verifies that the signature of the specified data is valid. |
VerifyData(const StreamPtr&, const ByteArrayPtr&, const HashAlgorithmName&) | Verifies that the signature of the specified binary stream is valid. |
VerifyHash(ByteArrayPtr, ByteArrayPtr) override | Checks data signature. |
See Also
- Class ECDsa
- Namespace System::Security::Cryptography
- Library Aspose.TeX for C++