8 references to CertUsageType
System.Security.Cryptography.Xml (8)
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
444
X509Certificate2Collection collection = Utils.BuildBagOfCerts(kiX509Data,
CertUsageType
.Decryption);
System\Security\Cryptography\Xml\SignedXml.cs (2)
508
_x509Collection = Utils.BuildBagOfCerts(x509Data,
CertUsageType
.Verification);
532
collection.AddRange(Utils.BuildBagOfCerts(x509Data,
CertUsageType
.Verification));
System\Security\Cryptography\Xml\Utils.cs (5)
636
internal static X509Certificate2Collection BuildBagOfCerts(KeyInfoX509Data keyInfoX509Data,
CertUsageType
certUsageType)
639
ArrayList? decryptionIssuerSerials = (certUsageType ==
CertUsageType
.Decryption ? new ArrayList() : null);
646
case
CertUsageType
.Verification:
649
case
CertUsageType
.Decryption:
663
string storeName = (certUsageType ==
CertUsageType
.Verification ? "AddressBook" : "My");