- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for workstation (0.3 sec)
-
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
} @Test @DisplayName("Should handle case sensitivity in domain and workstation") void testCaseSensitivity() { // Given String domain = "TestDomain"; String workstation = "TestWorkstation"; // When Type1Message type1 = new Type1Message(mockContext, 0, domain, workstation); // Then assertEquals(domain, type1.getSuppliedDomain());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type1Message.java
/** * Returns the supplied workstation name. * * @return A <code>String</code> containing the supplied workstation name. */ public String getSuppliedWorkstation() { return suppliedWorkstation; } /** * Sets the supplied workstation name for this message. * * @param suppliedWorkstation The supplied workstation for this message. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
} /** * Returns the workstation from which authentication is being performed. * * @return A <code>String</code> containing the workstation. */ public String getWorkstation() { return workstation; } /** * Sets the workstation for this message. * * @param workstation The workstation. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
} /** * Returns the workstation from which authentication is being performed. * * @return A <code>String</code> containing the workstation. */ public String getWorkstation() { return this.workstation; } /** * Sets the workstation for this message. * * @param workstation * The workstation. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
} /** * Returns the supplied workstation name. * * @return A <code>String</code> containing the supplied workstation name. */ public String getSuppliedWorkstation() { return this.suppliedWorkstation; } /** * Sets the supplied workstation name for this message. * * @param suppliedWorkstation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
* Generates a Type 1 NTLM message. * * @param domain the domain name * @param workstation the workstation name * @return the Base64-encoded Type 1 message * @throws NTLMEngineException if an NTLM engine error occurs */ @Override public String generateType1Msg(final String domain, final String workstation) throws NTLMEngineException {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
String domain = "TESTDOMAIN"; String username = "testuser"; String workstation = "TESTWS"; int flags = NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM; // When Type3Message type3 = new Type3Message(createMockContext(), type2, null, password, domain, username, workstation, flags); // Then assertNotNull(type3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
message[124 + i * 2] = userBytes[i]; message[124 + i * 2 + 1] = 0; } // Add Workstation "WORKSTATION" in Unicode at offset 132 String workstation = "WORKSTATION"; byte[] workstationBytes = workstation.getBytes(); for (int i = 0; i < workstationBytes.length; i++) { message[132 + i * 2] = workstationBytes[i];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (1)