Sspi.SecBuffer.ByReference@FieldOrder({"cbBuffer","BufferType","pvBuffer"}) public static class Sspi.SecBuffer extends Structure
| Modifier and Type | Class | Description |
|---|---|---|
static class |
Sspi.SecBuffer.ByReference |
A ByReference SecBuffer.
|
Structure.ByValue, Structure.FieldOrder, 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.
|
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.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitallocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFieldOrder, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeFieldpublic 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.