diff options
author | David Hook <dgh@bouncycastle.org> | 2015-10-24 16:31:54 +1100 |
---|---|---|
committer | David Hook <dgh@bouncycastle.org> | 2015-10-24 16:31:54 +1100 |
commit | 0178c1bb391ac346c6a75b4ad7a6bed73843c704 (patch) | |
tree | 2dee4de4e4f20cca632d3950fee17c59edf66db2 /crypto/test | |
parent | comment update (diff) | |
download | BouncyCastle.NET-ed25519-0178c1bb391ac346c6a75b4ad7a6bed73843c704.tar.xz |
Final naming refactor
Diffstat (limited to 'crypto/test')
-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 2c6f217da..89f7eea7d 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 Asn1SignatureCalculatorFactory("SHA1withRSA", OrigKP.Private), OrigCert)); + new Asn1SignatureFactory("SHA1withRSA", OrigKP.Private), OrigCert)); gen.AddSignerInfoGenerator(new SignerInfoGeneratorBuilder().Build( - new Asn1SignatureCalculatorFactory("MD5withRSA", OrigKP.Private), OrigCert)); + new Asn1SignatureFactory("MD5withRSA", OrigKP.Private), OrigCert)); gen.AddCertificates(x509Certs); |