System::Security::Cryptography::ECDsaBotan::SignData method

ECDsaBotan::SignData(const ByteArrayPtr&) method

Computes the hash value of the specified data array, and signs the result.

ByteArrayPtr System::Security::Cryptography::ECDsaBotan::SignData(const ByteArrayPtr &data)
ParameterTypeDescription
dataconst ByteArrayPtr&Input data array. return ECDSA signature for the input data.

See Also

ECDsaBotan::SignData(const ByteArrayPtr&, const HashAlgorithmName&) method

RTTI information.

virtual ByteArrayPtr System::Security::Cryptography::ECDsa::SignData(const ByteArrayPtr &data, const HashAlgorithmName &hash_algorithm)

See Also

ECDsaBotan::SignData(const ByteArrayPtr&, int32_t, int32_t) method

Computes the hash value of the specified data array, and signs the result.

ByteArrayPtr System::Security::Cryptography::ECDsaBotan::SignData(const ByteArrayPtr &data, int32_t offset, int32_t count)
ParameterTypeDescription
dataconst ByteArrayPtr&Input data array.
offsetint32_tOffset in data.
countint32_tNumber of bytes to use as input data. return ECDSA signature for the input data.

See Also

ECDsaBotan::SignData(const ByteArrayPtr&, int32_t, int32_t, const HashAlgorithmName&) method

RTTI information.

virtual ByteArrayPtr System::Security::Cryptography::ECDsa::SignData(const ByteArrayPtr &data, int32_t offset, int32_t count, const HashAlgorithmName &hash_algorithm)

See Also

ECDsaBotan::SignData(const StreamPtr&) method

Computes the hash value of the specified binary stream, and signs the result.

ByteArrayPtr System::Security::Cryptography::ECDsaBotan::SignData(const StreamPtr &stream)
ParameterTypeDescription
streamconst StreamPtr&Binary stream. return ECDSA signature for the input data.

See Also

ECDsaBotan::SignData(const StreamPtr&, const HashAlgorithmName&) method

RTTI information.

virtual ByteArrayPtr System::Security::Cryptography::ECDsa::SignData(const StreamPtr &stream, const HashAlgorithmName &hash_algorithm)

See Also