ISigner Interface

Definition

Namespace: Org.BouncyCastle.Crypto
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public interface ISigner

Properties

AlgorithmNameThe algorithm name.

Methods

BlockUpdate(ReadOnlySpanByte)Update the signer with a span of bytes.
BlockUpdate(Byte, Int32, Int32)Update the signer with a block of bytes.
GenerateSignatureGenerate a signature for the message we've been loaded with using the key we were initialised with.
GetMaxSignatureSize 
InitInitialise the signer for signing or verification.
ResetReset the signer back to its initial state.
UpdateUpdate the signer with a single byte.
VerifySignatureReturn true if the internal state represents the signature described in the passed in array.

See Also