diff options
author | David Hook <dgh@cryptoworkshop.com> | 2015-10-24 10:42:38 +1100 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2015-10-24 10:42:38 +1100 |
commit | 0b0a6567a14b9d74780dc5ee1f26de46278e416a (patch) | |
tree | 906df03e5bbb035a75f1c97f09ec7a2624e57b2d /crypto/test/src | |
parent | Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.git (diff) | |
download | BouncyCastle.NET-ed25519-0b0a6567a14b9d74780dc5ee1f26de46278e416a.tar.xz |
renamed ISignatureCalculator to ISignatureCalculatorFactory
Diffstat (limited to 'crypto/test/src')
-rw-r--r-- | crypto/test/src/cms/test/SignedDataTest.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/cms/test/SignedDataTest.cs b/crypto/test/src/cms/test/SignedDataTest.cs index 2b5d147f6..2c6f217da 100644 --- a/crypto/test/src/cms/test/SignedDataTest.cs +++ b/crypto/test/src/cms/test/SignedDataTest.cs @@ -532,9 +532,9 @@ namespace Org.BouncyCastle.Cms.Tests CmsSignedDataGenerator gen = new CmsSignedDataGenerator(); gen.AddSignerInfoGenerator(new SignerInfoGeneratorBuilder().Build( - new Asn1SignatureCalculator("SHA1withRSA", OrigKP.Private), OrigCert)); + new Asn1SignatureCalculatorFactory("SHA1withRSA", OrigKP.Private), OrigCert)); gen.AddSignerInfoGenerator(new SignerInfoGeneratorBuilder().Build( - new Asn1SignatureCalculator("MD5withRSA", OrigKP.Private), OrigCert)); + new Asn1SignatureCalculatorFactory("MD5withRSA", OrigKP.Private), OrigCert)); gen.AddCertificates(x509Certs); |