1 write to Content
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\ContentInfo.cs (1)
34
Content
= content;
14 references to Content
Microsoft.DotNet.SignCheckLibrary (2)
Verification\AuthentiCode.cs (1)
77
var timestampToken = NuGet.Packaging.Signing.TstInfo.Read(rfc3161Message.ContentInfo.
Content
);
Verification\Jar\JarSignatureFile.cs (1)
264
TstInfo timestampToken = TstInfo.Read(timestampCms.ContentInfo.
Content
);
System.Security.Cryptography.Pkcs (12)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (5)
172
byte[] toEncrypt = contentInfo.
Content
;
174
if (contentInfo.ContentType.Value == Oids.Pkcs7Data || contentInfo.
Content
.Length == 0)
176
return EncryptOneShot(alg, contentInfo.
Content
);
183
contentInfo.
Content
,
189
ReadOnlySpan<byte> content = contentInfo.
Content
.AsSpan(contentOffset, contentLength);
System\Security\Cryptography\Pkcs\EnvelopedCms.cs (2)
175
_encodedMessage = contentInfo.
Content
.CloneByteArray();
315
_encodedMessage = contentInfo.
Content
.CloneByteArray();
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
399
if (Rfc3161TimestampTokenInfo.TryDecode(cms.ContentInfo.
Content
, out Rfc3161TimestampTokenInfo? tokenInfo, out _))
System\Security\Cryptography\Pkcs\SignedCms.cs (4)
51
if (contentInfo.
Content
== null)
206
_heldContent = ContentInfo.
Content
.CloneByteArray();
312
if (ContentInfo.
Content
.Length == 0)
345
ReadOnlyMemory<byte> content = _heldContent ?? ContentInfo.
Content
;