1 19 20 package jcifs.ntlmssp; 21 22 25 public interface NtlmFlags { 26 27 30 public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001; 31 32 35 public static final int NTLMSSP_NEGOTIATE_OEM = 0x00000002; 36 37 41 public static final int NTLMSSP_REQUEST_TARGET = 0x00000004; 42 43 47 public static final int NTLMSSP_NEGOTIATE_SIGN = 0x00000010; 48 49 53 public static final int NTLMSSP_NEGOTIATE_SEAL = 0x00000020; 54 55 58 public static final int NTLMSSP_NEGOTIATE_DATAGRAM_STYLE = 0x00000040; 59 60 64 public static final int NTLMSSP_NEGOTIATE_LM_KEY = 0x00000080; 65 66 public static final int NTLMSSP_NEGOTIATE_NETWARE = 0x00000100; 67 68 71 public static final int NTLMSSP_NEGOTIATE_NTLM = 0x00000200; 72 73 78 public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 79 0x00001000; 80 81 86 public static final int NTLMSSP_NEGOTIATE_OEM_WORKSTATION_SUPPLIED = 87 0x00002000; 88 89 95 public static final int NTLMSSP_NEGOTIATE_LOCAL_CALL = 0x00004000; 96 97 101 public static final int NTLMSSP_NEGOTIATE_ALWAYS_SIGN = 0x00008000; 102 103 107 public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000; 108 109 113 public static final int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000; 114 115 120 public static final int NTLMSSP_TARGET_TYPE_SHARE = 0x00040000; 121 122 128 public static final int NTLMSSP_NEGOTIATE_NTLM2 = 0x00080000; 129 130 public static final int NTLMSSP_REQUEST_INIT_RESPONSE = 0x00100000; 131 132 public static final int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000; 133 134 public static final int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000; 135 136 141 public static final int NTLMSSP_NEGOTIATE_TARGET_INFO = 0x00800000; 142 143 146 public static final int NTLMSSP_NEGOTIATE_128 = 0x20000000; 147 148 public static final int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000; 149 150 153 public static final int NTLMSSP_NEGOTIATE_56 = 0x80000000; 154 155 } 156 | Popular Tags |