KerberosTicketHashKeyIdentifierClause Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
- 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.