5 references to Rsa
System.IdentityModel (4)
System\IdentityModel\Selectors\RsaSecurityTokenAuthenticator.cs (2)
28
claims.Add(new Claim(ClaimTypes.Rsa, rsaToken.
Rsa
, Rights.Identity));
29
claims.Add(Claim.CreateRsaClaim(rsaToken.
Rsa
));
System\IdentityModel\Tokens\RsaSecurityTokenHandler.cs (2)
169
ClaimsIdentity identity = new ClaimsIdentity(new Claim[] { new Claim(ClaimTypes.Rsa, rsaToken.
Rsa
.ToXmlString(false), ClaimValueTypes.RsaKeyValue, ClaimsIdentity.DefaultIssuer) }, AuthenticationTypes.Signature);
224
RSAParameters rsaParams = rsaToken.
Rsa
.ExportParameters(false);
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
1117
get { return this.rsaToken.
Rsa
; }