Skip navigation links
JNA API 4.2.0
com.sun.jna.platform.win32

Interface Sspi

    • Field Detail

      • MAX_TOKEN_SIZE

        static final int MAX_TOKEN_SIZE
        Maximum size in bytes of a security token.
        See Also:
        Constant Field Values
      • SECPKG_CRED_INBOUND

        static final int SECPKG_CRED_INBOUND
        Validate an incoming server credential. Inbound credentials might be validated by using an authenticating authority when InitializeSecurityContext or AcceptSecurityContext is called. If such an authority is not available, the function will fail and return SEC_E_NO_AUTHENTICATING_AUTHORITY. Validation is package specific.
        See Also:
        Constant Field Values
      • SECPKG_CRED_OUTBOUND

        static final int SECPKG_CRED_OUTBOUND
        Allow a local client credential to prepare an outgoing token.
        See Also:
        Constant Field Values
      • SECURITY_NATIVE_DREP

        static final int SECURITY_NATIVE_DREP
        Specifies Native data representation.
        See Also:
        Constant Field Values
      • ISC_REQ_ALLOCATE_MEMORY

        static final int ISC_REQ_ALLOCATE_MEMORY
        The security package allocates output buffers for you. When you have finished using the output buffers, free them by calling the FreeContextBuffer function.
        See Also:
        Constant Field Values
      • ISC_REQ_CONFIDENTIALITY

        static final int ISC_REQ_CONFIDENTIALITY
        Encrypt messages by using the EncryptMessage function.
        See Also:
        Constant Field Values
      • ISC_REQ_CONNECTION

        static final int ISC_REQ_CONNECTION
        The security context will not handle formatting messages. This value is the default.
        See Also:
        Constant Field Values
      • ISC_REQ_DELEGATE

        static final int ISC_REQ_DELEGATE
        The server can use the context to authenticate to other servers as the client. The ISC_REQ_MUTUAL_AUTH flag must be set for this flag to work. Valid for Kerberos. Ignore this flag for constrained delegation.
        See Also:
        Constant Field Values
      • ISC_REQ_EXTENDED_ERROR

        static final int ISC_REQ_EXTENDED_ERROR
        When errors occur, the remote party will be notified.
        See Also:
        Constant Field Values
      • ISC_REQ_INTEGRITY

        static final int ISC_REQ_INTEGRITY
        Sign messages and verify signatures by using the EncryptMessage and MakeSignature functions.
        See Also:
        Constant Field Values
      • ISC_REQ_MUTUAL_AUTH

        static final int ISC_REQ_MUTUAL_AUTH
        The mutual authentication policy of the service will be satisfied.
        See Also:
        Constant Field Values
      • ISC_REQ_REPLAY_DETECT

        static final int ISC_REQ_REPLAY_DETECT
        Detect replayed messages that have been encoded by using the EncryptMessage or MakeSignature functions.
        See Also:
        Constant Field Values
      • ISC_REQ_SEQUENCE_DETECT

        static final int ISC_REQ_SEQUENCE_DETECT
        Detect messages received out of sequence.
        See Also:
        Constant Field Values
      • ISC_REQ_STREAM

        static final int ISC_REQ_STREAM
        Support a stream-oriented connection.
        See Also:
        Constant Field Values
      • SECBUFFER_VERSION

        static final int SECBUFFER_VERSION
        Version of the SecBuffer struct.
        See Also:
        Constant Field Values
      • SECBUFFER_EMPTY

        static final int SECBUFFER_EMPTY
        This is a placeholder in the buffer array.
        See Also:
        Constant Field Values
      • SECBUFFER_DATA

        static final int SECBUFFER_DATA
        This buffer type is used for common data. The security package can read and write this data.
        See Also:
        Constant Field Values
      • SECBUFFER_TOKEN

        static final int SECBUFFER_TOKEN
        This buffer type is used to indicate the security token portion of the message. This is read-only for input parameters or read/write for output parameters.
        See Also:
        Constant Field Values
JNA API 4.2.0

Copyright © 2007-2015 Timothy Wall. All Rights Reserved.