Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MinTLSVersion (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	CipherSuites []string
    	// MinTLSVersion is the minimum TLS version supported.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	MinTLSVersion string
    
    	// HTTP2MaxStreamsPerConnection is the limit that the api server imposes on each client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier.go

    	// TLS version is configured in the BuildListenerContext.
    	minTLSVersion := authn_utils.GetMinTLSVersion(mc.GetMeshMTLS().GetMinProtocolVersion())
    	return MTLSSettings{
    		Port: endpointPort,
    		Mode: effectiveMTLSMode,
    		TCP: authn_utils.BuildInboundTLS(effectiveMTLSMode, node, networking.ListenerProtocolTCP,
    			trustDomainAliases, minTLSVersion, mc),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    	}
    
    	// these are static aspects of the tls.Config
    	if s.DisableHTTP2 {
    		klog.Info("Forcing use of http/1.1 only")
    		tlsConfig.NextProtos = []string{"http/1.1"}
    	}
    	if s.MinTLSVersion > 0 {
    		tlsConfig.MinVersion = s.MinTLSVersion
    	}
    	if len(s.CipherSuites) > 0 {
    		tlsConfig.CipherSuites = s.CipherSuites
    		insecureCiphers := flag.InsecureTLSCiphers()
    		for i := 0; i < len(s.CipherSuites); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    	ClientCA dynamiccertificates.CAContentProvider
    
    	// MinTLSVersion optionally overrides the minimum TLS version supported.
    	// 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top