Sspi.SecBuffer.ByReference
public static class Sspi.SecBuffer extends Structure
Modifier and Type | Class | Description |
---|---|---|
static class |
Sspi.SecBuffer.ByReference |
A ByReference SecBuffer.
|
Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
int |
BufferType |
Bit flags that indicate the type of buffer.
|
int |
cbBuffer |
Specifies the size, in bytes, of the buffer pointed to by the pvBuffer member.
|
static java.util.List<java.lang.String> |
FIELDS |
|
Pointer |
pvBuffer |
A pointer to a buffer.
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor | Description |
---|---|
SecBuffer() |
Create a new SECBUFFER_EMPTY buffer.
|
SecBuffer(int type,
byte[] token) |
Create a SecBuffer of a given type with initial data.
|
SecBuffer(int type,
int size) |
Create a SecBuffer of a given type and size.
|
Modifier and Type | Method | Description |
---|---|---|
byte[] |
getBytes() |
Get buffer bytes.
|
protected java.util.List<java.lang.String> |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public static final java.util.List<java.lang.String> FIELDS
public int cbBuffer
public int BufferType
public Pointer pvBuffer
public SecBuffer()
public SecBuffer(int type, int size)
type
- Buffer type, one of SECBUFFER_EMTPY, etc.size
- Buffer size, eg. MAX_TOKEN_SIZE.public SecBuffer(int type, byte[] token)
type
- Buffer type, one of SECBUFFER_EMTPY, etc.token
- Existing token.public byte[] getBytes()
protected java.util.List<java.lang.String> getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure