Base:
method
ToXmlString
System.Security.Cryptography.AsymmetricAlgorithm.ToXmlString(System.Boolean)
1 override of ToXmlString
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardRSACryptoProvider.cs (1)
225public override string ToXmlString(bool includePrivateParameters)
10 references to ToXmlString
System.Configuration (1)
System\Configuration\RSAProtectedConfigurationProvider.cs (1)
122string xmlString = rsa.ToXmlString(includePrivateParameters);
System.IdentityModel (7)
System\IdentityModel\Claims\ClaimsConversionHelper.cs (1)
197_value = ((RSA)claim.Resource).ToXmlString(false);
System\IdentityModel\RsaEncryptionCookieTransform.cs (2)
207byte[] hashedKey = hash.ComputeHash(Encoding.UTF8.GetBytes(key.ToXmlString(false))); 286rsaHash = hash.ComputeHash(Encoding.UTF8.GetBytes(encryptionKey.ToXmlString(false)));
System\IdentityModel\Selectors\SamlSecurityTokenAuthenticator.cs (1)
237return SecurityUtils.CreateIdentity(rsaKeyIdentifierClause.Rsa.ToXmlString(false), this.GetType().Name);
System\IdentityModel\Tokens\RsaSecurityTokenHandler.cs (1)
169ClaimsIdentity identity = new ClaimsIdentity(new Claim[] { new Claim(ClaimTypes.Rsa, rsaToken.Rsa.ToXmlString(false), ClaimValueTypes.RsaKeyValue, ClaimsIdentity.DefaultIssuer) }, AuthenticationTypes.Signature);
System\IdentityModel\Tokens\SessionSecurityToken.cs (1)
1573writer.WriteString(((RSA)claim.Resource).ToXmlString(false));
System\IdentityModel\X509Util.cs (1)
242claimsCollection.Add(new Claim(ClaimTypes.Rsa, rsa.ToXmlString(false), ClaimValueTypes.RsaKeyValue, issuer));
System.ServiceModel (2)
System\ServiceModel\Configuration\IdentityElement.cs (1)
109this.Rsa.Value = ((RSA)claim.Resource).ToXmlString(false);
System\ServiceModel\Security\SctClaimSerializer.cs (1)
119writer.WriteString(((RSA)claim.Resource).ToXmlString(false));