Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SSLv3 (0.02 sec)

  1. docs/changelogs/changelog_2x.md

     *  **`COMPATIBLE_TLS` no longer supports SSLv3.** In response to the
        [POODLE](https://googleonlinesecurity.blogspot.ca/2014/10/this-poodle-bites-exploiting-ssl-30.html)
        vulnerability, OkHttp no longer offers SSLv3 when negotiation an
        HTTPS connection. If you continue to need to connect to webservers
        running SSLv3, you must manually configure your own `ConnectionSpec`.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    )
    
    // tlsConfig produces the tls.Config to serve with.
    func (s *SecureServingInfo) tlsConfig(stopCh <-chan struct{}) (*tls.Config, error) {
    	tlsConfig := &tls.Config{
    		// Can't use SSLv3 because of POODLE and BEAST
    		// Can't use TLSv1.0 because of POODLE and BEAST using CBC cipher
    		// Can't use TLSv1.1 because of RC4 cipher usage
    		MinVersion: tls.VersionTLS12,
    		// enable HTTP2 for go's 1.7 HTTP Server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top