6 overrides of IsSupportedAlgorithm
System.IdentityModel (4)
System\IdentityModel\Tokens\RsaSecurityKey.cs (1)
232
public override bool
IsSupportedAlgorithm
(string algorithm)
System\IdentityModel\Tokens\SecurityKeyElement.cs (1)
122
public override bool
IsSupportedAlgorithm
(string algorithm)
System\IdentityModel\Tokens\SymmetricKey.cs (1)
102
public override bool
IsSupportedAlgorithm
(string algorithm)
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (1)
468
public override bool
IsSupportedAlgorithm
(string algorithm)
System.IdentityModel.Selectors (2)
infocard\client\System\IdentityModel\Selectors\InfoCardAsymmetricCrypto.cs (1)
194
public override bool
IsSupportedAlgorithm
(string algorithmUri)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricCrypto.cs (1)
80
public override bool
IsSupportedAlgorithm
(string algorithmUri)
12 references to IsSupportedAlgorithm
System.IdentityModel (4)
System\IdentityModel\SecurityUtils.cs (3)
109
if (wrappingToken.SecurityKeys[i].
IsSupportedAlgorithm
(encryptionMethod))
509
if (unwrappingToken.SecurityKeys[i].
IsSupportedAlgorithm
(encryptionMethod))
622
if (token.SecurityKeys[i].
IsSupportedAlgorithm
(algorithm))
System\IdentityModel\Tokens\SecurityKeyElement.cs (1)
129
return _securityKey.
IsSupportedAlgorithm
(algorithm);
System.ServiceModel (8)
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (2)
302
if (keys[i].
IsSupportedAlgorithm
(this.DefaultSymmetricSignatureAlgorithm))
309
else if (keys[i].
IsSupportedAlgorithm
(this.DefaultAsymmetricSignatureAlgorithm))
System\ServiceModel\Security\SecurityUtils.cs (6)
602
if (securityKey != null && securityKey.
IsSupportedAlgorithm
(algorithm))
615
if (securityKey != null && securityKey.
IsSupportedAlgorithm
(algorithm))
639
if (unwrappingToken.SecurityKeys[i].
IsSupportedAlgorithm
(encryptionMethod))
660
if (wrappingToken.SecurityKeys[i].
IsSupportedAlgorithm
(encryptionMethod))
720
if (symmetricSecurityKey == null || !symmetricSecurityKey.
IsSupportedAlgorithm
(derivationAlgorithm))
774
if (token.SecurityKeys[i].
IsSupportedAlgorithm
(algorithm))