Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for handshakes (0.15 sec)

  1. okhttp/src/main/kotlin/okhttp3/Handshake.kt

    import okhttp3.internal.immutableListOf
    import okhttp3.internal.toImmutableList
    
    /**
     * A record of a TLS handshake. For HTTPS clients, the client is *local* and the remote server is
     * its *peer*.
     *
     * This value object describes a completed handshake. Use [ConnectionSpec] to set policy for new
     * handshakes.
     */
    class Handshake internal constructor(
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	// constant after handshake; protected by handshakeMutex
    	handshakeMutex sync.Mutex
    	handshakeErr   error   // error resulting from handshake
    	vers           uint16  // TLS version
    	haveVers       bool    // version has been negotiated
    	config         *Config // configuration passed to constructor
    	// handshakes counts the number of handshakes performed on the
    	// connection so far. If renegotiation is disabled then this is either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    	}
    
    	if c.handshakes == 0 && hs.serverHello.secureRenegotiationSupported {
    		c.secureRenegotiation = true
    		if len(hs.serverHello.secureRenegotiation) != 0 {
    			c.sendAlert(alertHandshakeFailure)
    			return false, errors.New("tls: initial handshake had non-empty renegotiation extension")
    		}
    	}
    
    	if c.handshakes > 0 && c.secureRenegotiation {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. docs/features/connections.md

     * Keep whichever TCP connection succeeds first and cancel all the others.
     * Race TCP only. Only attempt a TLS handshake on the winning TCP connection.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// Must be configured if TCPTransport.URL is prefixed with https://
    	// +optional
    	ClientKey string `json:"clientKey,omitempty"`
    
    	// clientCert is the file location of the client certificate to be used in mtls handshakes with the konnectivity server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/generated.proto

      // does not indicate otherwise, the first block is the issued certificate,
      // and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakes.
      //
      // The certificate is encoded in PEM format.
      //
      // When serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:
      //
      //     base64(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     * the leftmost label.
     *
     * If multiple patterns match a hostname, any match is sufficient. For example, suppose pin A
     * applies to `*.publicobject.com` and pin B applies to `api.publicobject.com`. Handshakes for
     * `api.publicobject.com` are valid if either A's or B's certificate is in the chain.
     *
     * ## Warning: Certificate Pinning is Dangerous!
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. CHANGELOG.md

        introduced in the 5.0.0-alpha.4 release.
     *  Fix: Don't ask `Dns` implementations to resolve strings that are already IP addresses.
     *  Fix: Change fast fallback to race TCP handshakes only. To avoid wasted work, OkHttp will not
        attempt multiple TLS handshakes for the same call concurrently.
     *  Fix: Don't crash loading the public suffix database in GraalVM native images. The function
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// Must be configured if TCPTransport.URL is prefixed with https://
    	// +optional
    	ClientKey string `json:"clientKey,omitempty"`
    
    	// clientCert is the file location of the client certificate to be used in mtls handshakes with the konnectivity server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top