EncryptedKeyIdentifierClause Class

Definition

Represents a key identifier clause that identifies an encrypted key.

public ref class EncryptedKeyIdentifierClause sealed : System::IdentityModel::Tokens::BinaryKeyIdentifierClause
public sealed class EncryptedKeyIdentifierClause : System.IdentityModel.Tokens.BinaryKeyIdentifierClause
type EncryptedKeyIdentifierClause = class
    inherit BinaryKeyIdentifierClause
Public NotInheritable Class EncryptedKeyIdentifierClause
Inherits BinaryKeyIdentifierClause
Inheritance

Remarks

Typically, the EncryptedKeyIdentifierClause does not need to be used, other than when a custom security token service is created. When a security token service returns a security token, the issued security token contains references to attached and unattached security tokens. Attached references refer to security tokens that are contained within the security header of a SOAP message and unattached references are security tokens that are not included within the security header of a SOAP message. These references typically affirm the authenticity of the issued security token. Use the EncryptedKeyIdentifierClause class to reference an encrypted key. The GetEncryptedKey method returns the encrypted key.

WCF accepts wrapped keys that are well formed with respect to the wire format. The key wrap algorithm specified on the wire is accepted and used. It is not verified to be compatible with the SecurityAlgorithmSuite specified by the endpoint.

Constructors

EncryptedKeyIdentifierClause(Byte[], String)

Initializes a new instance of the EncryptedKeyIdentifierClause class using the specified key that is encrypted and the cryptographic algorithm used to encrypt the key.

EncryptedKeyIdentifierClause(Byte[], String, SecurityKeyIdentifier)

Initializes a new instance of the EncryptedKeyIdentifierClause class using the specified key that is encrypted, the cryptographic algorithm used to encrypt the key, and a key identifier for the encrypting key.

EncryptedKeyIdentifierClause(Byte[], String, SecurityKeyIdentifier, String)

Initializes a new instance of the EncryptedKeyIdentifierClause class using the specified key that is encrypted, the cryptographic algorithm used to encrypt the key, a key identifier for the encrypting key and a user-readable name.

EncryptedKeyIdentifierClause(Byte[], String, SecurityKeyIdentifier, String, Byte[], Int32)

Initializes a new instance of the EncryptedKeyIdentifierClause class using the specified key that is encrypted, the cryptographic algorithm used to encrypt the key, a key identifier for the key and a user-readable name.

Properties

CanCreateKey

Gets a value that indicates whether a key can be created.

(Inherited from SecurityKeyIdentifierClause)
CarriedKeyName

Gets a user-readable name that is associated with the encrypted key.

ClauseType

Gets the key identifier clause type.

(Inherited from SecurityKeyIdentifierClause)
DerivationLength

Gets the size of the derived key.

(Inherited from SecurityKeyIdentifierClause)
EncryptingKeyIdentifier

Gets a key identifier for the encrypting key.

EncryptionMethod

Gets the cryptographic algorithm that is used to encrypt the key.

Id

Gets or sets the key identifier clause ID.

(Inherited from SecurityKeyIdentifierClause)

Methods

CreateKey()

Creates a key based on the parameters passed into the constructor.

(Inherited from SecurityKeyIdentifierClause)
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetBuffer()

Gets the binary data that represents the key identifier.

(Inherited from BinaryKeyIdentifierClause)
GetDerivationNonce()

Gets the nonce that was used to generate the derived key.

(Inherited from SecurityKeyIdentifierClause)
GetEncryptedKey()

Gets the encrypted key.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetRawBuffer()

Gets the binary data that represents the key identifier.

(Inherited from BinaryKeyIdentifierClause)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
Matches(Byte[])

Returns a value that indicates whether the binary data for the current instance matches the specified binary data.

(Inherited from BinaryKeyIdentifierClause)
Matches(Byte[], Int32)

Returns a value that indicates whether the binary data for the current instance is equivalent to the specified binary data at the specified offset.

(Inherited from BinaryKeyIdentifierClause)
Matches(Byte[], String, String)

Returns a value that indicates whether the key identifier for this instance is equivalent to the specified encrypted key, encryption method and user-readable name.

Matches(SecurityKeyIdentifierClause)

Returns a value that indicates whether the key identifier for this instance is equivalent to the specified key identifier clause.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

Applies to