2 instantiations of KeyInfoX509Data
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\CryptoHelpers.cs (1)
32
"http://www.w3.org/2000/09/xmldsig# X509Data" => new
KeyInfoX509Data
(),
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
546
ek.KeyInfo.AddClause(new
KeyInfoX509Data
(certificate));
10 references to KeyInfoX509Data
Microsoft.AspNetCore.DataProtection (2)
XmlEncryption\EncryptedXmlDecryptor.cs (2)
113
if (!(keyInfoEnum.Current is
KeyInfoX509Data
kiX509Data))
129
private byte[]? GetKeyFromCert(EncryptedKey encryptedKey,
KeyInfoX509Data
keyInfo)
Microsoft.DotNet.SignCheckLibrary (2)
Verification\XmlVerifier.cs (2)
58
if (signedXml.Signature.KeyInfo.OfType<
KeyInfoX509Data
>().Count() == 0)
63
ArrayList certificates = signedXml.Signature.KeyInfo.OfType<
KeyInfoX509Data
>().First().Certificates;
System.Security (1)
System.Security.cs (1)
59
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Xml.
KeyInfoX509Data
))]
System.Security.Cryptography.Xml (5)
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
399
KeyInfoX509Data
? kiX509Data;
429
kiX509Data = keyInfoEnum.Current as
KeyInfoX509Data
;
System\Security\Cryptography\Xml\SignedXml.cs (2)
498
case
KeyInfoX509Data
x509Data:
521
if (clause is
KeyInfoX509Data
x509Data)
System\Security\Cryptography\Xml\Utils.cs (1)
624
internal static X509Certificate2Collection BuildBagOfCerts(
KeyInfoX509Data
keyInfoX509Data, CertUsageType certUsageType)