8 references to CertUsageType
System.Security.Cryptography.Xml (8)
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
432
X509Certificate2Collection collection = Utils.BuildBagOfCerts(kiX509Data,
CertUsageType
.Decryption);
System\Security\Cryptography\Xml\SignedXml.cs (2)
496
_x509Collection = Utils.BuildBagOfCerts(x509Data,
CertUsageType
.Verification);
520
collection.AddRange(Utils.BuildBagOfCerts(x509Data,
CertUsageType
.Verification));
System\Security\Cryptography\Xml\Utils.cs (5)
624
internal static X509Certificate2Collection BuildBagOfCerts(KeyInfoX509Data keyInfoX509Data,
CertUsageType
certUsageType)
627
ArrayList? decryptionIssuerSerials = (certUsageType ==
CertUsageType
.Decryption ? new ArrayList() : null);
634
case
CertUsageType
.Verification:
637
case
CertUsageType
.Decryption:
651
string storeName = (certUsageType ==
CertUsageType
.Verification ? "AddressBook" : "My");