Klasse Sspi.SecBuffer

java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.Sspi.SecBuffer
Bekannte direkte Unterklassen:
Sspi.SecBuffer.ByReference
Umschließende Schnittstelle:
Sspi

@FieldOrder({"cbBuffer","BufferType","pvBuffer"}) public static class Sspi.SecBuffer extends Structure
The SecBuffer structure describes a buffer allocated by a transport application to pass to a security package.
  • Felddetails

    • cbBuffer

      public int cbBuffer
      Specifies the size, in bytes, of the buffer pointed to by the pvBuffer member.
    • BufferType

      public int BufferType
      Bit flags that indicate the type of buffer. Must be one of the values of the SecBufferType enumeration.
    • pvBuffer

      public Pointer pvBuffer
      A pointer to a buffer.
  • Konstruktordetails

    • SecBuffer

      public SecBuffer()
      Create a new SECBUFFER_EMPTY buffer.
    • SecBuffer

      public SecBuffer(int type, int size)
      Create a SecBuffer of a given type and size.
      Parameter:
      type - Buffer type, one of SECBUFFER_EMTPY, etc.
      size - Buffer size, eg. MAX_TOKEN_SIZE.
    • SecBuffer

      public SecBuffer(int type, byte[] token)
      Create a SecBuffer of a given type with initial data.
      Parameter:
      type - Buffer type, one of SECBUFFER_EMTPY, etc.
      token - Existing token.
  • Methodendetails

    • getBytes

      public byte[] getBytes()
      Get buffer bytes.
      Gibt zurück:
      Raw buffer bytes.