4 overrides of CreateKey
System.IdentityModel (4)
System\IdentityModel\Tokens\RsaKeyIdentifierClause.cs (1)
38public override SecurityKey CreateKey()
System\IdentityModel\Tokens\WrappedSaml2AssertionKeyIdentifierClause.cs (1)
55public override SecurityKey CreateKey()
System\IdentityModel\Tokens\X509RawDataKeyIdentifierClause.cs (1)
36public override SecurityKey CreateKey()
System\ServiceModel\Security\BinarySecretKeyIdentifierClause.cs (1)
41public override SecurityKey CreateKey()
5 references to CreateKey
System.IdentityModel (4)
System\IdentityModel\EnvelopedSignatureReader.cs (1)
208_signingCredentials = new SigningCredentials(clause.CreateKey(), _signedXml.Signature.SignedInfo.SignatureMethod, signedInfo[0].DigestMethod, new SecurityKeyIdentifier(clause));
System\IdentityModel\Tokens\SamlAssertion.cs (1)
368return clause.CreateKey();
System\IdentityModel\Tokens\SecurityKeyIdentifier.cs (1)
85return this[i].CreateKey();
System\IdentityModel\Tokens\WrappedSaml2AssertionKeyIdentifierClause.cs (1)
57return this.clause.CreateKey();
System.ServiceModel (1)
System\ServiceModel\Security\SecurityUtils.cs (1)
2259key = keyIdentifierClause.CreateKey();