diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-24 20:42:08 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-24 20:42:08 +1100 |
commit | 588557ad7e6ae5be5408d53c06c671b496594005 (patch) | |
tree | 31fb446862a43e0c9c90b69032e986de91aadae2 /crypto/src/pkcs/Pkcs10CertificationRequest.cs | |
parent | Fixed naming of Asn1 implementation (diff) | |
download | BouncyCastle.NET-ed25519-588557ad7e6ae5be5408d53c06c671b496594005.tar.xz |
Fixed method name on verifier factory class
Diffstat (limited to 'crypto/src/pkcs/Pkcs10CertificationRequest.cs')
-rw-r--r-- | crypto/src/pkcs/Pkcs10CertificationRequest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pkcs/Pkcs10CertificationRequest.cs b/crypto/src/pkcs/Pkcs10CertificationRequest.cs index f9f5e7c6c..ce4814c23 100644 --- a/crypto/src/pkcs/Pkcs10CertificationRequest.cs +++ b/crypto/src/pkcs/Pkcs10CertificationRequest.cs @@ -328,7 +328,7 @@ namespace Org.BouncyCastle.Pkcs public bool Verify( IVerifierFactoryProvider verifierProvider) { - return Verify(verifierProvider.CreateSignatureVerifier(sigAlgId)); + return Verify(verifierProvider.CreateVerifierFactory(sigAlgId)); } public bool Verify( |