8 instantiations of ContentInfo
Microsoft.DotNet.SignCheckLibrary (2)
Verification\Jar\JarSignatureFile.cs (2)
215ContentInfo ci = new ContentInfo(signatureFileBytes); 246ContentInfo ci = new ContentInfo(signatureFileBytes);
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)
207ContentInfo = new ContentInfo(new Oid(_contentType), contentValue.ToArray());
System\Security\Cryptography\Pkcs\SignedCms.CtorOverloads.cs (1)
11new ContentInfo(Oids.Pkcs7DataOid.CopyOid(), Array.Empty<byte>());
26 references to ContentInfo
Microsoft.DotNet.SignCheckLibrary (2)
Verification\Jar\JarSignatureFile.cs (2)
215ContentInfo ci = new ContentInfo(signatureFileBytes); 246ContentInfo ci = new ContentInfo(signatureFileBytes);
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 unsafe ContentInfo? TryDecryptCore(
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (3)
20ContentInfo contentInfo, 55ContentInfo contentInfo, 150ContentInfo 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) 55public ContentInfo ContentInfo { get; private set; } 163ContentInfo contentInfo; 232ContentInfo? contentInfo = _decryptorPal!.TryDecrypt( 257ContentInfo? newContentInfo = null; 310private 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) 469ContentInfo 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)