IStreamCalculatorTResult Interface

Base interface for cryptographic operations such as Hashes, MACs, and Signatures which reduce a stream of data to a single value.

Definition

Namespace: Org.BouncyCastle.Crypto
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public interface IStreamCalculator<out TResult>

Type Parameters

TResult

Properties

StreamReturn a "sink" stream which only exists to update the implementing object.

Methods

GetResult Return the result of processing the stream. This value is only available once the stream has been closed.

See Also