- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for workstation (0.05 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
* @param domain The domain. * @param workstation The workstation. * @param challenge The Type 2 challenge message. * @return The Type 3 message. * @throws NTLMEngineException if an NTLM engine error occurs. */ @Override public String generateType3Msg(final String username, final String password, final String domain, final String workstation, final String challenge) throws NTLMEngineException {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2K 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)