diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-17 12:00:38 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-17 12:00:38 +1100 |
commit | b390ead6f2737c32f1f34b5527bd2a0f24a5c0e8 (patch) | |
tree | d2cd2af7480afa37e4e7b348aba250189e318d49 | |
parent | Initial cut of SignerInfoGenerator (diff) | |
download | BouncyCastle.NET-ed25519-b390ead6f2737c32f1f34b5527bd2a0f24a5c0e8.tar.xz |
Initial cut of SignerInfoGenerator for CMS
-rw-r--r-- | crypto/src/crypto/operators/Asn1Signature.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/operators/Asn1Signature.cs b/crypto/src/crypto/operators/Asn1Signature.cs index 0fd37b275..ba070f4fc 100644 --- a/crypto/src/crypto/operators/Asn1Signature.cs +++ b/crypto/src/crypto/operators/Asn1Signature.cs @@ -544,7 +544,7 @@ namespace Org.BouncyCastle.Crypto.Operators public ISignatureVerifier CreateSignatureVerifier(Object algorithmDetails) { - return new Asn1SignatureVerifier ((AlgorithmIdentifier)algorithmDetails, publicKey); + return new Asn1SignatureVerifier ((AlgorithmIdentifier)algorithmDetails, publicKey); } /// <summary> |