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