Uses of Class
org.apache.directory.server.kerberos.shared.messages.value.PreAuthenticationData

Packages that use PreAuthenticationData
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. 
org.apache.directory.server.kerberos.shared.messages.value Provides value object components of Kerberos messages. 
 

Uses of PreAuthenticationData in org.apache.directory.server.kerberos.shared.io.decoder
 

Methods in org.apache.directory.server.kerberos.shared.io.decoder that return PreAuthenticationData
 PreAuthenticationData PreAuthenticationDataDecoder.decode(byte[] encodedPreAuthData)
          Decodes a byte array into PreAuthenticationData.
protected static PreAuthenticationData 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 PreAuthenticationData[] 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 }
 

Uses of PreAuthenticationData in org.apache.directory.server.kerberos.shared.io.encoder
 

Methods in org.apache.directory.server.kerberos.shared.io.encoder with parameters of type PreAuthenticationData
protected static org.apache.directory.shared.asn1.der.DERSequence PreAuthenticationDataEncoder.encode(PreAuthenticationData preAuth)
          PA-DATA ::= SEQUENCE { padata-type[1] INTEGER, padata-value[2] OCTET STRING }
static byte[] PreAuthenticationDataEncoder.encode(PreAuthenticationData[] preAuth)
          Encodes an array of PreAuthenticationDatas into a byte array.
protected static org.apache.directory.shared.asn1.der.DERSequence PreAuthenticationDataEncoder.encodeSequence(PreAuthenticationData[] preAuth)
          METHOD-DATA ::= SEQUENCE OF PA-DATA
 

Uses of PreAuthenticationData in org.apache.directory.server.kerberos.shared.messages
 

Methods in org.apache.directory.server.kerberos.shared.messages that return PreAuthenticationData
 PreAuthenticationData[] KdcReply.getPaData()
          Returns an array of PreAuthenticationDatas.
 PreAuthenticationData[] KdcRequest.getPreAuthData()
          Returns an array of PreAuthenticationDatas.
 

Methods in org.apache.directory.server.kerberos.shared.messages with parameters of type PreAuthenticationData
 void KdcReply.setPaData(PreAuthenticationData[] data)
          Sets the array of PreAuthenticationDatas.
 

Constructors in org.apache.directory.server.kerberos.shared.messages with parameters of type PreAuthenticationData
AuthenticationReply(PreAuthenticationData[] paData, javax.security.auth.kerberos.KerberosPrincipal clientPrincipal, Ticket ticket, EncryptedData encPart)
          Creates a new instance of AuthenticationReply.
KdcReply(PreAuthenticationData[] paData, javax.security.auth.kerberos.KerberosPrincipal clientPrincipal, Ticket ticket, EncryptedData encPart, MessageType msgType)
          Creates a new instance of KdcReply.
KdcRequest(int pvno, MessageType messageType, PreAuthenticationData[] preAuthData, RequestBody requestBody)
          Creates a new instance of KdcRequest.
KdcRequest(int pvno, MessageType messageType, PreAuthenticationData[] preAuthData, RequestBody requestBody, byte[] bodyBytes)
          Creates a new instance of KdcRequest.
TicketGrantReply(PreAuthenticationData[] pAData, javax.security.auth.kerberos.KerberosPrincipal clientPrincipal, Ticket ticket, EncryptedData encPart)
          Creates a new instance of TicketGrantReply.
 

Uses of PreAuthenticationData in org.apache.directory.server.kerberos.shared.messages.value
 

Methods in org.apache.directory.server.kerberos.shared.messages.value that return PreAuthenticationData
 PreAuthenticationData PreAuthenticationDataModifier.getPreAuthenticationData()
          Returns the PreAuthenticationData.
 



Copyright © 2003-2007 The Apache Software Foundation. All Rights Reserved.