System::Security::Cryptography::ECDsaBotan::HashData method

ECDsaBotan::HashData(ByteArrayPtr, int32_t, int32_t, HashAlgorithmName) method

Computes the hash value of the specified data array using the specified hash algorithm.

ByteArrayPtr System::Security::Cryptography::ECDsaBotan::HashData(ByteArrayPtr data, int32_t offset, int32_t count, HashAlgorithmName hash_algorithm) override
ParameterTypeDescription
dataByteArrayPtrData to hash.
offsetint32_tOffset in data.
countint32_tNumber of bytes to hash.
hash_algorithmHashAlgorithmNameHash algorithm.

ReturnValue

Hashed data.

See Also

ECDsaBotan::HashData(StreamPtr, HashAlgorithmName) method

Computes the hash value of the specified binary stream using the specified hash algorithm.

ByteArrayPtr System::Security::Cryptography::ECDsaBotan::HashData(StreamPtr stream, HashAlgorithmName hash_algorithm) override
ParameterTypeDescription
streamStreamPtrBynary stream to hashed.
hash_algorithmHashAlgorithmNameHash algorithm.

ReturnValue

Hashed data.

See Also