6 instantiations of ContentInfo
System.Security (6)
system\security\cryptography\pkcs\envelopedpkcs7.cs (3)
78new ContentInfo(Oid.FromOidValue(CAPI.szOID_RSA_data, OidGroup.ExtensionOrAttribute), new byte[0]), 186m_contentInfo = new ContentInfo(contentType, content); 364m_contentInfo = new ContentInfo(contentType, content);
system\security\cryptography\pkcs\signedpkcs7.cs (3)
38new ContentInfo(Oid.FromOidValue(CAPI.szOID_RSA_data, OidGroup.ExtensionOrAttribute), new byte[0]), 44new ContentInfo(Oid.FromOidValue(CAPI.szOID_RSA_data, OidGroup.ExtensionOrAttribute), new byte[0]), 147m_contentInfo = new ContentInfo(contentType, content);
13 references to ContentInfo
System.Security (13)
system\security\cryptography\pkcs\envelopedpkcs7.cs (6)
32private ContentInfo m_contentInfo; 82public EnvelopedCms (ContentInfo contentInfo) : 87public EnvelopedCms (SubjectIdentifierType recipientIdentifierType, ContentInfo contentInfo) : 93public EnvelopedCms (ContentInfo contentInfo, AlgorithmIdentifier encryptionAlgorithm) : 98public EnvelopedCms (SubjectIdentifierType recipientIdentifierType, ContentInfo contentInfo, AlgorithmIdentifier encryptionAlgorithm) { 126public ContentInfo ContentInfo {
system\security\cryptography\pkcs\signedpkcs7.cs (7)
29private ContentInfo m_contentInfo; 48public SignedCms (ContentInfo contentInfo) : this(SubjectIdentifierType.IssuerAndSerialNumber, contentInfo, false) {} 50public SignedCms (SubjectIdentifierType signerIdentifierType, ContentInfo contentInfo) : this(signerIdentifierType, contentInfo, false) {} 52public SignedCms (ContentInfo contentInfo, bool detached) : this(SubjectIdentifierType.IssuerAndSerialNumber, contentInfo, detached) {} 55public SignedCms (SubjectIdentifierType signerIdentifierType, ContentInfo contentInfo, bool detached) { 93public ContentInfo ContentInfo { 409ContentInfo contentInfo,