summary refs log tree commit diff
path: root/crypto/src/cms/SignerInformation.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-07-24 17:35:02 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-07-24 17:35:02 +0700
commita4eccbf1b23c10003c0fb2b8e73144cbd3d68d2c (patch)
tree4b5b379d5ab1db3224cb1911f1ccf51b9e8e5462 /crypto/src/cms/SignerInformation.cs
parentRefactoring in Cms (diff)
downloadBouncyCastle.NET-ed25519-a4eccbf1b23c10003c0fb2b8e73144cbd3d68d2c.tar.xz
Updates to Cms from bc-java
Diffstat (limited to 'crypto/src/cms/SignerInformation.cs')
-rw-r--r--crypto/src/cms/SignerInformation.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/cms/SignerInformation.cs b/crypto/src/cms/SignerInformation.cs
index 24ba20037..488e3e425 100644
--- a/crypto/src/cms/SignerInformation.cs
+++ b/crypto/src/cms/SignerInformation.cs
@@ -393,7 +393,7 @@ namespace Org.BouncyCastle.Cms
                 sig = Helper.GetSignatureInstance(signatureName);
 
                 //sig = Helper.GetSignatureInstance(this.EncryptionAlgOid);
-                //sig = SignerUtilities.GetSigner(sigAlgOid);
+                //sig = Helper.GetSignatureInstance(sigAlgOid);
 			}
 
 			try
@@ -599,7 +599,7 @@ namespace Org.BouncyCastle.Cms
 				}
 				else if (algorithm.Equals("DSA"))
 				{
-					ISigner sig = SignerUtilities.GetSigner("NONEwithDSA");
+					ISigner sig = Helper.GetSignatureInstance("NONEwithDSA");
 
 					sig.Init(false, key);