3 instantiations of KeyInfoX509Data
Microsoft.Build.Tasks.Core (1)
ManifestUtil\mansign2.cs (1)
749signedXml.KeyInfo.AddClause(new KeyInfoX509Data(signer.Certificate, signer.IncludeOption));
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)
570ek.KeyInfo.AddClause(new KeyInfoX509Data(certificate));
10 references to KeyInfoX509Data
Microsoft.AspNetCore.DataProtection (2)
XmlEncryption\EncryptedXmlDecryptor.cs (2)
113if (!(keyInfoEnum.Current is KeyInfoX509Data kiX509Data)) 129private byte[]? GetKeyFromCert(EncryptedKey encryptedKey, KeyInfoX509Data keyInfo)
Microsoft.DotNet.SignCheckLibrary (2)
Verification\XmlVerifier.cs (2)
58if (signedXml.Signature.KeyInfo.OfType<KeyInfoX509Data>().Count() == 0) 63ArrayList 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)
411KeyInfoX509Data? kiX509Data; 441kiX509Data = keyInfoEnum.Current as KeyInfoX509Data;
System\Security\Cryptography\Xml\SignedXml.cs (2)
507case KeyInfoX509Data x509Data: 530if (clause is KeyInfoX509Data x509Data)
System\Security\Cryptography\Xml\Utils.cs (1)
636internal static X509Certificate2Collection BuildBagOfCerts(KeyInfoX509Data keyInfoX509Data, CertUsageType certUsageType)