blob: a113bd8d48194eb4b3e9152933f3adef518daf1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System.Collections.Generic;
using Org.BouncyCastle.Asn1.Cms;
namespace Org.BouncyCastle.Cms
{
/// <remarks>
/// The 'Signature' parameter is only available when generating unsigned attributes.
/// </remarks>
public enum CmsAttributeTableParameter
{
// const string ContentType = "contentType";
// const string Digest = "digest";
// const string Signature = "encryptedDigest";
// const string DigestAlgorithmIdentifier = "digestAlgID";
ContentType, Digest, Signature, DigestAlgorithmIdentifier
}
public interface CmsAttributeTableGenerator
{
AttributeTable GetAttributes(IDictionary<CmsAttributeTableParameter, object> parameters);
}
}
|