Azure.Storage.HashAlgorithmHasher
HashAlgorithm wrapper for IHasher interface
namespace Azure.Storage
{
internal class HashAlgorithmHasher : IHasher, IDisposable
{
public int HashSizeInBytes { get; }
public HashAlgorithmHasher(HashAlgorithm hashAlgorithm);
public Task<byte[]> ComputeHashInternal(Stream stream, bool async, CancellationToken cancellationToken);
public void AppendHash(ReadOnlySpan<byte> content);
public int GetFinalHash(Span<byte> hashDestination);
public void Dispose();
}
}