diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-24 20:39:19 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-24 20:39:19 +1100 |
commit | 97244e96eee11da4255a6eca3c45f3e321602694 (patch) | |
tree | 8f1fdfddd4f001d06f827f74db49e9691b2d2a4e /crypto/src/pkcs | |
parent | fixed file name (diff) | |
download | BouncyCastle.NET-ed25519-97244e96eee11da4255a6eca3c45f3e321602694.tar.xz |
Fixed naming of Asn1 implementation
Diffstat (limited to 'crypto/src/pkcs')
-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 c581f8b34..f9f5e7c6c 100644 --- a/crypto/src/pkcs/Pkcs10CertificationRequest.cs +++ b/crypto/src/pkcs/Pkcs10CertificationRequest.cs @@ -322,7 +322,7 @@ namespace Org.BouncyCastle.Pkcs public bool Verify( AsymmetricKeyParameter publicKey) { - return Verify(new Asn1SignatureVerifierProvider(publicKey)); + return Verify(new Asn1VerifierFactoryProvider(publicKey)); } public bool Verify( |