21 references to AsymmetricKey
System.IdentityModel (1)
System\IdentityModel\Tokens\SecurityKeyType.cs (1)
22
|| value == SecurityKeyType.
AsymmetricKey
System.ServiceModel (20)
System\ServiceModel\Channels\SecurityBindingElement.cs (3)
1348
if (issuedTokenParameters != null && (issuedTokenParameters.KeyType != SecurityKeyType.SymmetricKey && issuedTokenParameters.KeyType != SecurityKeyType.
AsymmetricKey
))
1423
if (issuedTokenParameters != null && (issuedTokenParameters.KeyType != SecurityKeyType.SymmetricKey && issuedTokenParameters.KeyType != SecurityKeyType.
AsymmetricKey
))
1713
if (issuedTokenParameters != null && (issuedTokenParameters.KeyType != SecurityKeyType.SymmetricKey && issuedTokenParameters.KeyType != SecurityKeyType.
AsymmetricKey
))
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (1)
743
else if (issuedParameters.KeyType == System.IdentityModel.Tokens.SecurityKeyType.
AsymmetricKey
&&
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (2)
132
clientX509Requirement.KeyType = SecurityKeyType.
AsymmetricKey
;
150
serverX509Requirement.KeyType = SecurityKeyType.
AsymmetricKey
;
System\ServiceModel\Security\ServiceCredentialsSecurityTokenManager.cs (2)
179
clientX509Requirement.KeyType = SecurityKeyType.
AsymmetricKey
;
191
serverX509Requirement.KeyType = SecurityKeyType.
AsymmetricKey
;
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (5)
97
internal protected override bool HasAsymmetricKey { get { return this.KeyType == SecurityKeyType.
AsymmetricKey
; } }
757
|| (this.keyType == SecurityKeyType.
AsymmetricKey
&& algorithm != algorithmSuite.DefaultAsymmetricSignatureAlgorithm))
766
|| (this.keyType == SecurityKeyType.
AsymmetricKey
&& algorithm != algorithmSuite.DefaultAsymmetricKeyWrapAlgorithm))
821
result.KeyType = SecurityKeyType.
AsymmetricKey
;
834
if (parameters.KeyType != SecurityKeyType.
AsymmetricKey
)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (3)
853
else if (this.keyType == SecurityKeyType.
AsymmetricKey
)
910
else if (this.keyType == SecurityKeyType.
AsymmetricKey
)
996
else if (this.keyType == SecurityKeyType.
AsymmetricKey
)
System\ServiceModel\Security\Tokens\RsaSecurityTokenParameters.cs (1)
52
requirement.KeyType = SecurityKeyType.
AsymmetricKey
;
System\ServiceModel\Security\Tokens\X509SecurityTokenParameters.cs (1)
138
requirement.KeyType = SecurityKeyType.
AsymmetricKey
;
System\ServiceModel\Security\WSTrust.cs (2)
1306
else if (keyType == SecurityKeyType.
AsymmetricKey
)
1324
keyType = SecurityKeyType.
AsymmetricKey
;