KerberosTicketHashKeyIdentifierClause Constructors

Definition

Initializes a new instance of the KerberosTicketHashKeyIdentifierClause class.

Overloads

KerberosTicketHashKeyIdentifierClause(Byte[])

Initializes a new instance of the KerberosTicketHashKeyIdentifierClause class using the specified SHA-1 hash of a Kerberos service ticket.

KerberosTicketHashKeyIdentifierClause(Byte[], Byte[], Int32)

Initializes a new instance of the KerberosTicketHashKeyIdentifierClause class using the specified Kerberos ticket, nonce, and key length.

KerberosTicketHashKeyIdentifierClause(Byte[])

Initializes a new instance of the KerberosTicketHashKeyIdentifierClause class using the specified SHA-1 hash of a Kerberos service ticket.

public:
 KerberosTicketHashKeyIdentifierClause(cli::array <System::Byte> ^ ticketHash);
public KerberosTicketHashKeyIdentifierClause (byte[] ticketHash);
new System.IdentityModel.Tokens.KerberosTicketHashKeyIdentifierClause : byte[] -> System.IdentityModel.Tokens.KerberosTicketHashKeyIdentifierClause
Public Sub New (ticketHash As Byte())

Parameters

ticketHash
Byte[]

An array of Byte that contains the SHA-1 hash of a Kerberos service ticket.

Exceptions

ticketHash is null.

Applies to

KerberosTicketHashKeyIdentifierClause(Byte[], Byte[], Int32)

Initializes a new instance of the KerberosTicketHashKeyIdentifierClause class using the specified Kerberos ticket, nonce, and key length.

public:
 KerberosTicketHashKeyIdentifierClause(cli::array <System::Byte> ^ ticketHash, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public KerberosTicketHashKeyIdentifierClause (byte[] ticketHash, byte[] derivationNonce, int derivationLength);
new System.IdentityModel.Tokens.KerberosTicketHashKeyIdentifierClause : byte[] * byte[] * int -> System.IdentityModel.Tokens.KerberosTicketHashKeyIdentifierClause
Public Sub New (ticketHash As Byte(), derivationNonce As Byte(), derivationLength As Integer)

Parameters

ticketHash
Byte[]

An array of Byte that contains the SHA-1 hash of a Kerberos service ticket.

derivationNonce
Byte[]

An array of Byte that contains the nonce that was used to create a derived key.

derivationLength
Int32

The size of the derived key.

Exceptions

ticketHash is null.

ticketHash is zero length.

Remarks

Windows Communication Foundation (WCF) does not support the creation of implied derived key identifiers. However, WCF processes and consumes incoming SOAP messages that contain implied derived key identifiers.

Applies to