- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for 0x0000ff00 (0.03 sec)
-
src/main/java/jcifs/smb/MIEName.java
if (buf.length < i + NAME_LEN_SIZE) { throw new IllegalArgumentException(); } len = 0xff000000 & buf[i++] << 24; len |= 0x00ff0000 & buf[i++] << 16; len |= 0x0000ff00 & buf[i++] << 8; len |= 0x000000ff & buf[i++]; // NAME if (buf.length < i + len) { throw new IllegalArgumentException(); } this.name = new String(buf, i, len);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
0x00000000, 0x80000000, 0x00008000, 0x00108020, 0x80100000, 0x00100020, 0x80000020, 0x00000000, 0x00108000, 0x00008020, 0x80108000, 0x80100000, 0x00008020, 0x00000000, 0x00108020, 0x80100020, 0x00100000, 0x80008020, 0x80100000, 0x80108000, 0x00008000, 0x80100000, 0x80008000, 0x00000020, 0x80108020, 0x00108020, 0x00000020, 0x00008000, 0x80000000, 0x00008020,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/NtlmFlagsTest.java
assertEquals(0x00000100, NtlmFlags.NTLMSSP_NEGOTIATE_NETWARE, "NTLMSSP_NEGOTIATE_NETWARE should be 0x00000100"); } @Test void testNtlmNegotiateNtlm() { assertEquals(0x00000200, NtlmFlags.NTLMSSP_NEGOTIATE_NTLM, "NTLMSSP_NEGOTIATE_NTLM should be 0x00000200"); } @Test void testNtlmNegotiateAnonymous() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
*/ int NTLMSSP_NEGOTIATE_NETWARE = 0x00000100; /** * Indicates support for NTLM authentication. */ int NTLMSSP_NEGOTIATE_NTLM = 0x00000200; /** * Indicates that this is an anonymous connection */ int NTLMSSP_NEGOTIATE_ANONYMOUS = 0x00000800; /** * Indicates whether the OEM-formatted domain name in which the
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
int NTLMSSP_NEGOTIATE_LM_KEY = 0x00000080; /** * Indicates support for NetWare authentication. */ int NTLMSSP_NEGOTIATE_NETWARE = 0x00000100; /** * Indicates support for NTLM authentication. */ int NTLMSSP_NEGOTIATE_NTLM = 0x00000200; /** * Indicates whether the OEM-formatted domain name in which the * client workstation has membership is supplied in the Type-1 message.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
private static final int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100; private static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x00000200; private static final int FILE_NOTIFY_CHANGE_STREAM_SIZE = 0x00000400; private static final int FILE_NOTIFY_CHANGE_STREAM_WRITE = 0x00000800; private static final int FILE_NOTIFY_CHANGE_ALL = 0x00000FFF; @BeforeEach void setUp() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
* return. */ int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100; /** * Any change to a named stream of a file in the watched directory or subtree causes a change notification wait operation to return. */ int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x00000200; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
void testFileNotifyChangeSecurity() { assertEquals(0x00000100, FileNotifyInformation.FILE_NOTIFY_CHANGE_SECURITY); } @Test @DisplayName("Verify FILE_NOTIFY_CHANGE_STREAM_NAME constant value") void testFileNotifyChangeStreamName() { assertEquals(0x00000200, FileNotifyInformation.FILE_NOTIFY_CHANGE_STREAM_NAME); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosErrorTest.java
void zeroCodeMapsToZero() { // Act int actual = findNtStatusOrMinusOne(0x00000000); // Assert assertEquals(0x00000000, actual); } @ParameterizedTest @ValueSource(ints = { -1, 1, 0x00FFFF00, 0x0BADF00D }) @DisplayName("Invalid or unknown DOS codes return not-found sentinel (-1)") void unknownCodesReturnMinusOne(int dosCode) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
server = server.substring(0, dot); } try (LsaPolicyHandle policyHandle = new LsaPolicyHandle(handle, "\\\\" + server, 0x00000800)) { resolveSids(handle, policyHandle, sids); } } catch (final SmbException e) { if (e.getNtStatus() == NtStatus.NT_STATUS_INVALID_PARAMETER) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0)