- Sort Score
- Result 10 results
- Languages All
Results 41 - 45 of 45 for NtlmPasswordAuthentication (0.13 sec)
-
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
log.info("Samba container started - Base URL: {}", baseUrl); // Create authentication context - try guest auth first for broader compatibility try { NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(SingletonContext.getInstance(), WORKGROUP, USERNAME, PASSWORD); context = SingletonContext.getInstance().withCredentials(auth); } catch (Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmContextTest.java
import jcifs.smb1.ntlmssp.NtlmFlags; import jcifs.smb1.ntlmssp.Type1Message; import jcifs.smb1.ntlmssp.Type2Message; @ExtendWith(MockitoExtension.class) class NtlmContextTest { @Mock private NtlmPasswordAuthentication mockAuth; private final String domain = "TEST_DOMAIN"; private final String username = "testUser"; private final String password = "testPassword";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
boolean useUnicode, received, extendedSecurity; long responseTimeout = 1; int signSeq; boolean verifyFailed; NtlmPasswordAuthentication auth = null; String path; SigningDigest digest = null; ServerMessageBlock response; ServerMessageBlock() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} @SuppressWarnings("deprecation") private static boolean isExternalAuth(CIFSContext tc, NtlmPasswordAuthenticator npa) { return npa instanceof jcifs.smb.NtlmPasswordAuthentication && ((NtlmPasswordAuthentication) npa).areHashesExternal() && tc.getConfig().getDefaultPassword() != null; } boolean logoff(boolean inError, boolean inUse) { boolean wasInUse = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
*/ @Deprecated public SmbFile(final URL url) throws MalformedURLException { this(url, SingletonContext.getInstance() .withCredentials(new NtlmPasswordAuthentication(SingletonContext.getInstance(), url.getUserInfo()))); } /** * Constructs an SmbFile representing a resource on an SMB network such
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)