- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for Negotiate (0.11 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
} } } public void destroy() { } /** * This method simply calls <tt>negotiate( req, resp, false )</tt> * and then <tt>chain.doFilter</tt>. You can override and call * negotiate manually to achive a variety of different behavior. */ public void doFilter( ServletRequest request, ServletResponse response,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} } protected void doConnect() throws IOException { /* * Negotiate Protocol Request / Response */ SmbComNegotiateResponse resp = new SmbComNegotiateResponse( server ); try { negotiate( port, resp ); } catch( ConnectException ce ) { // Try an alternate port if there was an issue communicating to the server
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Connection.kt
* to a remote host. Newer TLS options are quite useful: * * * Server Name Indication (SNI) enables one IP address to negotiate secure connections for * multiple domain names. * * * Application Layer Protocol Negotiation (ALPN) enables the HTTPS port (443) to be used to * negotiate HTTP/2. * * Unfortunately, older HTTPS servers refuse to connect when such options are presented. Rather than
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
*/ @Override public byte[] getServerEncryptionKey () { if ( this.negotiated == null ) { return null; } if ( this.negotiated instanceof SmbComNegotiateResponse ) { return ( (SmbComNegotiateResponse) this.negotiated ).getServerData().encryptionKey; } return null; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
try { resp = send(req, RequestParam.NO_RETRY); } catch ( SMBSignatureValidationException e ) { throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e); } catch ( SmbException e ) { if ( log.isDebugEnabled() ) { log.debug(String.format("VALIDATE_NEGOTIATE_INFO response code 0x%x", e.getNtStatus()));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmSsp.java
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 * hashes via NTLM SSP with MSIE. It might also be used directly by servlet * containers to incorporate similar functionality. * <p> * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.7K bytes - Viewed (0)