- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for NtlmPasswordAuthentication (0.12 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
} @Override public NtlmPasswordAuthentication clone () { NtlmPasswordAuthentication cloned = new NtlmPasswordAuthentication(); cloneInternal(cloned, this); return cloned; } /** * @param to * @param from */ protected static void cloneInternal ( NtlmPasswordAuthentication to, NtlmPasswordAuthentication from ) { to.context = from.context;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 8.5K 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(); } public NtlmPasswordAuthentication getAuthentication() { return new NtlmPasswordAuthentication(domain == null ? "" : domain, username, password); } public String getServer() { return server; } public void setServer(final String server) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmSsp.java
import jcifs.CIFSContext; import jcifs.ntlmssp.NtlmFlags; import jcifs.ntlmssp.Type1Message; import jcifs.ntlmssp.Type2Message; import jcifs.ntlmssp.Type3Message; import jcifs.smb.NtlmPasswordAuthentication; /** * This class is used internally by <tt>NtlmHttpFilter</tt>, * <tt>NtlmServlet</tt>, and <tt>NetworkExplorer</tt> to negotiate password
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
* * @throws CIFSException * */ boolean close () throws CIFSException; /** * Authenticate arbitrary credentials represented by the * <tt>NtlmPasswordAuthentication</tt> object against the domain controller * specified by the <tt>UniAddress</tt> parameter. If the credentials are * not accepted, an <tt>SmbAuthException</tt> will be thrown. If an error
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 09:02:44 UTC 2020 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
import javax.servlet.UnavailableException; import javax.servlet.http.HttpSession; import jcifs.smb1.Config; import jcifs.smb1.UniAddress; import jcifs.smb1.netbios.NbtAddress; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.smb1.SmbAuthException; import jcifs.smb1.smb1.SmbSession; import jcifs.smb1.util.Base64; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmSsp.java
import jcifs.smb1.ntlmssp.NtlmFlags; import jcifs.smb1.ntlmssp.Type1Message; import jcifs.smb1.ntlmssp.Type2Message; import jcifs.smb1.ntlmssp.Type3Message; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.util.Base64; /** * This class is used internally by <tt>NtlmHttpFilter</tt>, * <tt>NtlmServlet</tt>, and <tt>NetworkExplorer</tt> to negiotiate password
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
} @SuppressWarnings ( "deprecation" ) private static boolean isExternalAuth ( NtlmPasswordAuthenticator pwAuth ) { return pwAuth instanceof jcifs.smb.NtlmPasswordAuthentication && ! ( (jcifs.smb.NtlmPasswordAuthentication) pwAuth ).areHashesExternal() && pwAuth.getPassword().isEmpty(); } @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.6K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
instance="prototype"> <property name="charset">"UTF-8"</property> <!-- ntlmPasswordAuthentication --> </component> <component name="smb1Client" class="org.codelibs.fess.crawler.client.smb1.SmbClient" instance="prototype"> <property name="charset">"UTF-8"</property> <!-- ntlmPasswordAuthentication --> </component> <component name="ftpClient"
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Tue Aug 08 12:54:47 UTC 2023 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java
return sae; } /** Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials. */ public static NtlmPasswordAuthentication requestNtlmPasswordAuthentication( String url, SmbAuthException sae ) { if( auth == null ) { return null; } synchronized( auth ) { auth.url = url;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.8K bytes - Viewed (0)