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)
225
public override string
ToXmlString
(bool includePrivateParameters)
10 references to ToXmlString
System.Configuration (1)
System\Configuration\RSAProtectedConfigurationProvider.cs (1)
122
string 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)
207
byte[] hashedKey = hash.ComputeHash(Encoding.UTF8.GetBytes(key.
ToXmlString
(false)));
286
rsaHash = hash.ComputeHash(Encoding.UTF8.GetBytes(encryptionKey.
ToXmlString
(false)));
System\IdentityModel\Selectors\SamlSecurityTokenAuthenticator.cs (1)
237
return SecurityUtils.CreateIdentity(rsaKeyIdentifierClause.Rsa.
ToXmlString
(false), this.GetType().Name);
System\IdentityModel\Tokens\RsaSecurityTokenHandler.cs (1)
169
ClaimsIdentity 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)
1573
writer.WriteString(((RSA)claim.Resource).
ToXmlString
(false));
System\IdentityModel\X509Util.cs (1)
242
claimsCollection.Add(new Claim(ClaimTypes.Rsa, rsa.
ToXmlString
(false), ClaimValueTypes.RsaKeyValue, issuer));
System.ServiceModel (2)
System\ServiceModel\Configuration\IdentityElement.cs (1)
109
this.Rsa.Value = ((RSA)claim.Resource).
ToXmlString
(false);
System\ServiceModel\Security\SctClaimSerializer.cs (1)
119
writer.WriteString(((RSA)claim.Resource).
ToXmlString
(false));