ISignerWithRecovery Interface

Definition

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

Properties

AlgorithmNameThe algorithm name.
(Inherited from ISigner)

Methods

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

See Also