HashData()

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

Arguments

ParameterTypeDescription
dataByteArrayPtrData to hash.
offsetint32_tOffset in data.
countint32_tNumber of bytes to hash.
hash_algorithmHashAlgorithmNameHash algorithm.

Return Value

Hashed data.

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

Arguments

ParameterTypeDescription
streamStreamPtrBynary stream to hashed.
hash_algorithmHashAlgorithmNameHash algorithm.

Return Value

Hashed data.

See Also