<PackageReference Include="BouncyCastle.Cryptography" Version="2.7.0-beta.98" />

TlsHash

public interface TlsHash
Interface for message digest, or hash, services.
namespace Org.BouncyCastle.Tls.Crypto { public interface TlsHash { void Update(byte[] input, int inOff, int length); byte[] CalculateHash(); TlsHash CloneHash(); void Reset(); } }