Package | Description |
---|---|
org.apache.directory.server.kerberos.shared.io.decoder |
Provides the decoders for Kerberos message objects.
|
org.apache.directory.server.kerberos.shared.io.encoder |
Provides the encoders for Kerberos message objects.
|
org.apache.directory.server.kerberos.shared.messages |
Provides base message objects for Kerberos request and
reply messages.
|
Modifier and Type | Method and Description |
---|---|
PaData |
PreAuthenticationDataDecoder.decode(byte[] encodedPreAuthData)
Decodes a byte array into
PaData . |
protected static PaData |
PreAuthenticationDataDecoder.decode(org.apache.directory.shared.asn1.der.DERSequence sequence)
PA-DATA ::= SEQUENCE {
padata-type[1] INTEGER,
padata-value[2] OCTET STRING,
-- might be encoded AP-REQ
}
|
protected static PaData[] |
PreAuthenticationDataDecoder.decodeSequence(org.apache.directory.shared.asn1.der.DERSequence sequence)
KDC-REQ ::= SEQUENCE {
pvno[1] INTEGER,
msg-type[2] INTEGER,
padata[3] SEQUENCE OF PA-DATA OPTIONAL,
req-body[4] KDC-REQ-BODY
}
|
Modifier and Type | Method and Description |
---|---|
protected static org.apache.directory.shared.asn1.der.DERSequence |
PreAuthenticationDataEncoder.encode(PaData preAuth)
PA-DATA ::= SEQUENCE {
padata-type[1] INTEGER,
padata-value[2] OCTET STRING
}
|
static byte[] |
PreAuthenticationDataEncoder.encode(PaData[] preAuth)
Encodes an array of
PaData s into a byte array. |
protected static org.apache.directory.shared.asn1.der.DERSequence |
PreAuthenticationDataEncoder.encodeSequence(PaData[] preAuth)
METHOD-DATA ::= SEQUENCE OF PA-DATA
|
Modifier and Type | Method and Description |
---|---|
PaData[] |
KdcReply.getPaData()
Returns an array of
PaData s. |
PaData[] |
KdcRequest.getPreAuthData()
Returns an array of
PaData s. |
Modifier and Type | Method and Description |
---|---|
void |
KdcReply.setPaData(PaData[] data)
Sets the array of
PaData s. |
Constructor and Description |
---|
AuthenticationReply(PaData[] paData,
KerberosPrincipal clientPrincipal,
Ticket ticket,
EncryptedData encPart)
Creates a new instance of AuthenticationReply.
|
KdcReply(PaData[] paData,
KerberosPrincipal clientPrincipal,
Ticket ticket,
EncryptedData encPart,
KerberosMessageType msgType)
Creates a new instance of KdcReply.
|
KdcRequest(int pvno,
KerberosMessageType messageType,
PaData[] preAuthData,
RequestBody requestBody)
Creates a new instance of KdcRequest.
|
KdcRequest(int pvno,
KerberosMessageType messageType,
PaData[] preAuthData,
RequestBody requestBody,
byte[] bodyBytes)
Creates a new instance of KdcRequest.
|
TicketGrantReply(PaData[] pAData,
KerberosPrincipal clientPrincipal,
Ticket ticket,
EncryptedData encPart)
Creates a new instance of TicketGrantReply.
|
Copyright © 2003–2014 The Apache Software Foundation. All rights reserved.