2 writes to EncapContentInfo
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\Asn1\SignedDataAsn.xml.cs (1)
154System.Security.Cryptography.Pkcs.Asn1.EncapsulatedContentInfoAsn.Decode(ref sequenceReader, rebind, out decoded.EncapContentInfo);
System\Security\Cryptography\Pkcs\SignedCms.cs (1)
360EncapContentInfo = new EncapsulatedContentInfoAsn { ContentType = contentType },
12 references to EncapContentInfo
System.Security.Cryptography.Pkcs (12)
System\Security\Cryptography\Pkcs\Asn1\SignedDataAsn.xml.cs (1)
40EncapContentInfo.Encode(writer);
System\Security\Cryptography\Pkcs\Pkcs12Info.cs (2)
86if (signedData.EncapContentInfo.ContentType == Oids.Pkcs7Data) 88authSafeBytes = signedData.EncapContentInfo.Content.GetValueOrDefault();
System\Security\Cryptography\Pkcs\SignedCms.cs (7)
144copy.EncapContentInfo.Content = null; 145Debug.Assert(_signedData.EncapContentInfo.Content != null); 151copy.EncapContentInfo.Content = _signedData.EncapContentInfo.Content; 174_contentType = _signedData.EncapContentInfo.ContentType; 179ReadOnlyMemory<byte>? content = _signedData.EncapContentInfo.Content; 370_signedData.EncapContentInfo.Content = writer.Encode();
System\Security\Cryptography\Pkcs\SignerInfo.cs (2)
572ReadOnlyMemory<byte>? embeddedContent = documentData.EncapContentInfo.Content; 580documentData.EncapContentInfo.ContentType);