Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for negotitate (0.15 sec)

  1. src/crypto/tls/bogo_shim_test.go

    			log.Fatalf("conn error: %s", err)
    		}
    
    		cs := tlsConn.ConnectionState()
    		if cs.HandshakeComplete {
    			if *expectALPN != "" && cs.NegotiatedProtocol != *expectALPN {
    				log.Fatalf("unexpected protocol negotiated: want %q, got %q", *expectALPN, cs.NegotiatedProtocol)
    			}
    
    			if *expectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFileInputStream.java

            }
            else {
                log.debug("LARGE_READX disabled");
                this.readSizeFile = this.readSize;
            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Negotiated file read size is " + this.readSizeFile);
            }
        }
    
    
        /**
         * Ensures that the file descriptor is openend
         * 
         * @throws CIFSException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  3. cmd/metrics.go

    		mfs, err := gatherers.Gather()
    		if err != nil {
    			if len(mfs) == 0 {
    				writeErrorResponseJSON(r.Context(), w, toAdminAPIErr(r.Context(), err), r.URL)
    				return
    			}
    		}
    
    		contentType := expfmt.Negotiate(r.Header)
    		w.Header().Set("Content-Type", string(contentType))
    
    		enc := expfmt.NewEncoder(w, contentType)
    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// previous session with a session ticket or similar mechanism.
    	DidResume bool
    
    	// CipherSuite is the cipher suite negotiated for the connection (e.g.
    	// TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_AES_128_GCM_SHA256).
    	CipherSuite uint16
    
    	// NegotiatedProtocol is the application protocol negotiated with ALPN.
    	NegotiatedProtocol string
    
    	// NegotiatedProtocolIsMutual used to indicate a mutual NPN negotiation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NetworkExplorer.java

    /**
     * This servlet may be used to "browse" the entire hierarchy of resources
     * on an SMB network like one might with Network Neighborhood or Windows
     * Explorer. The users credentials with be negotiated using NTLM SSP if
     * the client is Microsoft Internet Explorer.
     */
    
    public class NetworkExplorer extends HttpServlet {
    
        private static LogStream log = LogStream.getInstance();
    
        private MimeMap mimeMap;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

    
    /**
     * This servlet may be used to "browse" the entire hierarchy of resources
     * on an SMB network like one might with Network Neighborhood or Windows
     * Explorer. The users credentials with be negotiated using NTLM SSP if
     * the client is Microsoft Internet Explorer.
     * 
     * @deprecated Unsupported
     */
    @Deprecated
    public class NetworkExplorer extends HttpServlet {
    
        /**
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  7. src/crypto/tls/quic_test.go

    	}
    }
    
    // Test that QUICConn.ConnectionState can be used during the handshake,
    // and that it reports the application protocol as soon as it has been
    // negotiated.
    func TestQUICConnectionState(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionTLS13
    	config.NextProtos = []string{"h3"}
    	cli := newTestQUICClient(t, config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     * their caseless domain and username fields are equal and either both hashes are external and they are equal or both internally supplied passwords are equal. If one <tt>NtlmPasswordAuthentication</tt> object has external hashes (meaning negotiated via NTLM HTTP Authentication) and the other does not they will not be equal. This is technically not correct however the server 8 byte challage would be required to compute and compare the password hashes but that it not available with this method....
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  9. src/crypto/tls/cipher_suites.go

    // accept and expose cipher suite IDs instead of this type.
    type CipherSuite struct {
    	ID   uint16
    	Name string
    
    	// Supported versions is the list of TLS protocol versions that can
    	// negotiate this cipher suite.
    	SupportedVersions []uint16
    
    	// Insecure is true if the cipher suite has known security issues
    	// due to its primitives, design, or implementation.
    	Insecure bool
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

       * servers it should be the agreed-upon extensions immediately.
       */
      private var extensions: WebSocketExtensions?,
      /** If compression is negotiated, outbound messages of this size and larger will be compressed. */
      private var minimumDeflateSize: Long,
      private val webSocketCloseTimeout: Long,
    ) : WebSocket, WebSocketReader.FrameCallback {
      private val key: String
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top