6 references to EncryptedKeyIdentifierClause
System.IdentityModel (6)
System\IdentityModel\CryptoHelper.cs (1)
321return new SecurityKeyIdentifier(new EncryptedKeyIdentifierClause(wrappedKey, wrappingCredentials.Algorithm, wrappingCredentials.SecurityKeyIdentifier));
System\IdentityModel\EncryptedKeyElement.cs (1)
150return new EncryptedKeyIdentifierClause( CipherData.CipherValue, Algorithm, KeyIdentifier );
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (1)
2420EncryptedKeyIdentifierClause clause = new EncryptedKeyIdentifierClause(encryptedKey, protectedKey.WrappingCredentials.Algorithm, protectedKey.WrappingCredentials.SecurityKeyIdentifier);
System\IdentityModel\Tokens\EncryptedKeyEncryptingCredentials.cs (1)
79base.SecurityKeyIdentifier = new SecurityKeyIdentifier( new EncryptedKeyIdentifierClause( encryptedKey, _wrappingCredentials.Algorithm, _wrappingCredentials.SecurityKeyIdentifier ) );
System\IdentityModel\Tokens\EncryptedKeyIdentifierClause.cs (1)
15: this(encryptedKey, encryptionMethod, null)
System\IdentityModel\Tokens\EncryptedSecurityTokenHandler.cs (1)
241return new EncryptedKeyIdentifierClause(encryptedKey.CipherData.CipherValue, encryptedKey.Algorithm, encryptedKey.KeyIdentifier);