summary refs log tree commit diff
path: root/crypto/src/cms
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-01-27 01:41:30 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-01-27 01:41:30 +0700
commitdcb30eddab3e4db1fdb97061f895a3725cfb81aa (patch)
tree3ae8ca3232c30fbbc9fd2f87b57b9ef69e5248f6 /crypto/src/cms
parentAvoid reparsing when possible (diff)
downloadBouncyCastle.NET-ed25519-dcb30eddab3e4db1fdb97061f895a3725cfb81aa.tar.xz
Add CmsAlgorithmProtection and related constants
Diffstat (limited to 'crypto/src/cms')
-rw-r--r--crypto/src/cms/CMSAttributeTableGenerator.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/crypto/src/cms/CMSAttributeTableGenerator.cs b/crypto/src/cms/CMSAttributeTableGenerator.cs
index a113bd8d4..36d1bdcff 100644
--- a/crypto/src/cms/CMSAttributeTableGenerator.cs
+++ b/crypto/src/cms/CMSAttributeTableGenerator.cs
@@ -9,13 +9,8 @@ namespace Org.BouncyCastle.Cms
 	/// </remarks>
 	public enum CmsAttributeTableParameter
 	{
-//		const string ContentType = "contentType";
-//		const string Digest = "digest";
-//		const string Signature = "encryptedDigest";
-//		const string DigestAlgorithmIdentifier = "digestAlgID";
-
-		ContentType, Digest, Signature, DigestAlgorithmIdentifier
-	}
+		ContentType, Digest, Signature, DigestAlgorithmIdentifier, SignatureAlgorithmIdentifier
+    }
 
 	public interface CmsAttributeTableGenerator
 	{