8 references to CertUsageType
System.Security (8)
system\security\cryptography\xml\encryptedxml.cs (1)
445
X509Certificate2Collection collection = Utils.BuildBagOfCerts(kiX509Data,
CertUsageType
.Decryption);
system\security\cryptography\xml\signedxml.cs (2)
470
m_x509Collection = Utils.BuildBagOfCerts (x509Data,
CertUsageType
.Verification);
489
collection.AddRange(Utils.BuildBagOfCerts(x509Data,
CertUsageType
.Verification));
system\security\cryptography\xml\utils.cs (5)
854
internal static X509Certificate2Collection BuildBagOfCerts (KeyInfoX509Data keyInfoX509Data,
CertUsageType
certUsageType) {
856
ArrayList decryptionIssuerSerials = (certUsageType ==
CertUsageType
.Decryption ? new ArrayList() : null);
860
case
CertUsageType
.Verification:
863
case
CertUsageType
.Decryption:
881
string storeName = (certUsageType ==
CertUsageType
.Verification ? "AddressBook" : "My");