Interface IVerifierFactory
- Namespace
- Org.BouncyCastle.Crypto
- Assembly
- BouncyCastle.Cryptography.dll
Base interface for operators that serve as stream-based signature verifiers.
public interface IVerifierFactory
Properties
AlgorithmDetails
The algorithm details object for this verifier.
object AlgorithmDetails { get; }
Property Value
Methods
CreateCalculator()
Create a stream calculator for this verifier. The stream calculator is used for the actual operation of entering the data to be verified and producing a result which can be used to verify the original signature.
IStreamCalculator<IVerifier> CreateCalculator()
Returns
- IStreamCalculator<IVerifier>
A calculator producing an IVerifier which can verify the signature.