6 instantiations of ContentInfo
System.Security.Cryptography.Pkcs (6)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decode.cs (1)
33contentInfo = new ContentInfo(
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decrypt.cs (2)
103return new ContentInfo( 121return new ContentInfo(
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (1)
19: this(new ContentInfo(Array.Empty<byte>()))
System\Security\Cryptography\Pkcs\SignedCms.cs (1)
200ContentInfo = new ContentInfo(new Oid(_contentType), contentValue.ToArray());
System\Security\Cryptography\Pkcs\SignedCms.CtorOverloads.cs (1)
11new ContentInfo(Oids.Pkcs7DataOid.CopyOid(), Array.Empty<byte>());
24 references to ContentInfo
System.Security (1)
System.Security.cs (1)
13[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Pkcs.ContentInfo))]
System.Security.Cryptography.Pkcs (23)
Internal\Cryptography\DecryptorPal.cs (1)
33public abstract ContentInfo? TryDecrypt(
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decode.cs (1)
22out ContentInfo contentInfo,
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decrypt.cs (2)
32public override unsafe ContentInfo? TryDecrypt( 92public static ContentInfo? TryDecryptCore(
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (3)
21ContentInfo contentInfo, 56ContentInfo contentInfo, 151ContentInfo contentInfo,
Internal\Cryptography\PkcsPal.cs (2)
27public abstract byte[] Encrypt(CmsRecipientCollection recipients, ContentInfo contentInfo, AlgorithmIdentifier contentEncryptionAlgorithm, X509Certificate2Collection originatorCerts, CryptographicAttributeObjectCollection unprotectedAttributes); 34public abstract DecryptorPal Decode(ReadOnlySpan<byte> encodedMessage, out int version, out ContentInfo contentInfo, out AlgorithmIdentifier contentEncryptionAlgorithm, out X509Certificate2Collection originatorCerts, out CryptographicAttributeObjectCollection unprotectedAttributes);
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (7)
23public EnvelopedCms(ContentInfo contentInfo) 28public EnvelopedCms(ContentInfo contentInfo, AlgorithmIdentifier encryptionAlgorithm) 49public ContentInfo ContentInfo { get; private set; } 153ContentInfo contentInfo; 212ContentInfo? contentInfo = _decryptorPal!.TryDecrypt( 237ContentInfo? newContentInfo = null; 290private void SetContentInfo(ContentInfo contentInfo)
System\Security\Cryptography\Pkcs\SignedCms.cs (3)
41public ContentInfo ContentInfo { get; private set; } 44public SignedCms(SubjectIdentifierType signerIdentifierType, ContentInfo contentInfo, bool detached) 456ContentInfo save = ContentInfo;
System\Security\Cryptography\Pkcs\SignedCms.CtorOverloads.cs (4)
10private static ContentInfo MakeEmptyContentInfo() => 23public SignedCms(ContentInfo contentInfo) 28public SignedCms(SubjectIdentifierType signerIdentifierType, ContentInfo contentInfo) 33public SignedCms(ContentInfo contentInfo, bool detached)