Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for CipherSuites (0.26 sec)

  1. doc/godebug.md

    Go 1.23 changed the default TLS cipher suites used by clients and servers when
    not explicitly configured, removing 3DES cipher suites. The default can be reverted
    using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites).
    
    Go 1.23 changed the behavior of [`tls.X509KeyPair`](/pkg/crypto/tls#X509KeyPair)
    and [`tls.LoadX509KeyPair`](/pkg/crypto/tls#LoadX509KeyPair) to populate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	MinTLSVersion uint16
    
    	// CipherSuites optionally overrides the list of allowed cipher suites for the server.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	CipherSuites []uint16
    
    	// HTTP2MaxStreamsPerConnection is the limit that the api server imposes on each client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    	if server.Tls == nil || gateway.IsPassThroughServer(server) {
    		return nil // We don't need to setup TLS context for passthrough mode
    	}
    
    	server.Tls.CipherSuites = security.FilterCipherSuites(server.Tls.CipherSuites)
    	return BuildListenerTLSContext(server.Tls, proxy, mesh, transportProtocol, gateway.IsTCPServerWithTLSTermination(server))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  4. okhttp/api/okhttp.api

    	public final fun allEnabledTlsVersions ()Lokhttp3/ConnectionSpec$Builder;
    	public final fun build ()Lokhttp3/ConnectionSpec;
    	public final fun cipherSuites ([Ljava/lang/String;)Lokhttp3/ConnectionSpec$Builder;
    	public final fun cipherSuites ([Lokhttp3/CipherSuite;)Lokhttp3/ConnectionSpec$Builder;
    	public final fun supportsTlsExtensions (Z)Lokhttp3/ConnectionSpec$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    				CredentialName: "sds-name",
    				CipherSuites:   []string{"not-a-cipher-suite"},
    			},
    			"", "not-a-cipher-suite",
    		},
    		{
    			"valid cipher suites",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    				CredentialName: "sds-name",
    				CipherSuites:   []string{"ECDHE-ECDSA-AES128-SHA"},
    			},
    			"", "",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: server selected unsupported compression format")
    	}
    
    	selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
    	if hs.suite != nil && selectedSuite != hs.suite {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: server changed cipher suite after a HelloRetryRequest")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. api/go1.4.txt

    # CL 107400043 crypto/tls: Added dynamic alternative to NameToCertificate map for SNI, Percy Wegmann <******@****.***>
    pkg crypto/tls, type ClientHelloInfo struct
    pkg crypto/tls, type ClientHelloInfo struct, CipherSuites []uint16
    pkg crypto/tls, type ClientHelloInfo struct, ServerName string
    pkg crypto/tls, type ClientHelloInfo struct, SupportedCurves []CurveID
    pkg crypto/tls, type ClientHelloInfo struct, SupportedPoints []uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/policy_applier_test.go

    			TlsParams: &tls.TlsParameters{
    				TlsMinimumProtocolVersion: tls.TlsParameters_TLSv1_2,
    				TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    				CipherSuites: []string{
    					"ECDHE-ECDSA-AES256-GCM-SHA384",
    					"ECDHE-RSA-AES256-GCM-SHA384",
    					"ECDHE-ECDSA-AES128-GCM-SHA256",
    					"ECDHE-RSA-AES128-GCM-SHA256",
    					"AES256-GCM-SHA384",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  9. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/ConnectionSpec$Builder;-><init>(Z)V
    HSPLokhttp3/ConnectionSpec$Builder;->build()Lokhttp3/ConnectionSpec;
    HSPLokhttp3/ConnectionSpec$Builder;->cipherSuites([Ljava/lang/String;)Lokhttp3/ConnectionSpec$Builder;
    HSPLokhttp3/ConnectionSpec$Builder;->cipherSuites([Lokhttp3/CipherSuite;)Lokhttp3/ConnectionSpec$Builder;
    HSPLokhttp3/ConnectionSpec$Builder;->supportsTlsExtensions(Z)Lokhttp3/ConnectionSpec$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	TLSCertFile string
    	// tlsPrivateKeyFile is the file containing x509 private key matching tlsCertFile
    	TLSPrivateKeyFile string
    	// TLSCipherSuites is the list of allowed cipher suites for the server.
    	// Note that TLS 1.3 ciphersuites are not configurable.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	TLSCipherSuites []string
    	// TLSMinVersion is the minimum TLS version supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top