public class PaData extends Object implements org.apache.directory.api.asn1.Asn1Object
PA-DATA ::= SEQUENCE {
-- NOTE: first tag is [1], not [0]
padata-type [1] Int32,
padata-value [2] OCTET STRING -- might be encoded AP-REQ
}
| Constructor and Description |
|---|
PaData()
Creates a new instance of PreAuthenticationData.
|
PaData(PaDataType paDataType,
byte[] paDataValue)
Creates a new instance of PreAuthenticationData.
|
| Modifier and Type | Method and Description |
|---|---|
int |
computeLength()
Compute the PreAuthenticationData length
|
ByteBuffer |
encode(ByteBuffer buffer)
Encode the PreAuthenticationData message to a PDU.
|
PaDataType |
getPaDataType()
Returns the
PaDataType. |
byte[] |
getPaDataValue()
Returns the raw bytes of the
PaData. |
void |
setPaDataType(int paDataType)
Set the PA-DATA type
|
void |
setPaDataType(PaDataType paDataType)
Set the PA-DATA type
|
void |
setPaDataValue(byte[] paDataValue)
Set the PA-DATA value
|
String |
toString() |
String |
toString(String tabs) |
public PaData()
public PaData(PaDataType paDataType, byte[] paDataValue)
paDataType - paDataValue - public PaDataType getPaDataType()
PaDataType.PaDataType.public void setPaDataType(int paDataType)
paDataType - The PA-DATA typepublic void setPaDataType(PaDataType paDataType)
paDataType - The PA-DATA typepublic byte[] getPaDataValue()
PaData.PaData.public void setPaDataValue(byte[] paDataValue)
paDataValue - The PA-DATA valuepublic int computeLength()
PreAuthenticationData :
0x30 L1 PreAuthenticationData sequence
|
+--> 0xA0 L2 padata-type tag
| |
| +--> 0x02 L2-1 padata-type (int)
|
+--> 0xA1 L3 padata-value tag
|
+--> 0x04 L3-1 padata-value (OCTET STRING)
where L1 = L2 + lenght(0xA0) + length(L2) +
L3 + lenght(0xA1) + length(L3)
and
L2 = L2-1 + length(0x02) + length( L2-1)
L3 = L3-1 + length(0x04) + length( L3-1)
computeLength in interface org.apache.directory.api.asn1.Asn1Objectpublic ByteBuffer encode(ByteBuffer buffer) throws org.apache.directory.api.asn1.EncoderException
PreAuthenticationData :
0x30 LL
0xA1 LL
0x02 0x01 padata-type
0xA2 LL
0x04 LL padata-value
encode in interface org.apache.directory.api.asn1.Asn1Objectbuffer - The buffer where to put the PDU. It should have been allocated
before, with the right size.org.apache.directory.api.asn1.EncoderExceptionpublic String toString()
toString in class ObjectObject.toString()public String toString(String tabs)
Object.toString()Copyright © 2003–2014 The Apache Software Foundation. All rights reserved.