- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for NTLM (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
import org.codelibs.jcifs.smb.ntlmssp.Type2Message; import org.codelibs.jcifs.smb.ntlmssp.Type3Message; /** * JcifsEngine is a NTLM Engine implementation based on JCIFS. * * @author shinsuke * */ public class JcifsEngine implements NTLMEngine { /** Flags for Type 1 NTLM message. */ protected static final int TYPE_1_FLAGS = NtlmFlags.NTLMSSP_NEGOTIATE_56 | NtlmFlags.NTLMSSP_NEGOTIATE_128
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
buf.append(':'); buf.append(port); } buf.append('/'); } return buf.toString(); } /** * Returns the NTLM password authentication. * @return The NTLM password authentication. */ public NtlmPasswordAuthentication getAuthentication() { return new NtlmPasswordAuthentication(domain == null ? "" : domain, username, password); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
accessTimeoutTask.cancel(); } } } } /** * Creates an NTLM password authenticator from the given SMB authentication. * * @param smbAuthentication the SMB authentication information * @return the NTLM password authenticator */ protected NtlmPasswordAuthenticator getAuthenticator(final SmbAuthentication smbAuthentication) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 22.5K bytes - Viewed (0)