Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SSLv3 (0.3 sec)

  1. okhttp/src/test/java/okhttp3/internal/connection/RetryConnectionTest.kt

      }
    
      @Test fun someFallbacksSupported() {
        val sslV3 =
          ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
            .tlsVersions(TlsVersion.SSL_3_0)
            .build()
        val routePlanner = factory.newRoutePlanner(client)
        val route = factory.newRoute()
        val connectionSpecs = listOf(ConnectionSpec.MODERN_TLS, ConnectionSpec.COMPATIBLE_TLS, sslV3)
        val enabledSocketTlsVersions =
          arrayOf(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/TlsVersion.kt

     */
    enum class TlsVersion(
      @get:JvmName("javaName") val javaName: String,
    ) {
      TLS_1_3("TLSv1.3"), // 2016.
      TLS_1_2("TLSv1.2"), // 2008.
      TLS_1_1("TLSv1.1"), // 2006.
      TLS_1_0("TLSv1"), // 1999.
      SSL_3_0("SSLv3"), // 1996.
      ;
    
      @JvmName("-deprecated_javaName")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "javaName"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/server_test.go

    	"crypto/x509"
    	"fmt"
    	"net"
    	"net/http"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/client-go/util/cert"
    )
    
    func TestServingCert(t *testing.T) {
    	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: Mon Apr 12 18:29:15 UTC 2021
    - 6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/crypto/tls/common.go

    	"slices"
    	"strings"
    	"sync"
    	"time"
    	_ "unsafe" // for linkname
    )
    
    const (
    	VersionTLS10 = 0x0301
    	VersionTLS11 = 0x0302
    	VersionTLS12 = 0x0303
    	VersionTLS13 = 0x0304
    
    	// Deprecated: SSLv3 is cryptographically broken, and is no longer
    	// supported by this package. See golang.org/issue/32716.
    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top