Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for CipherSuites (0.18 sec)

  1. 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)
  2. pilot/pkg/bootstrap/server.go

    			err := peerCertVerifier.VerifyPeerCert(rawCerts, verifiedChains)
    			if err != nil {
    				log.Infof("Could not verify certificate: %v", err)
    			}
    			return err
    		},
    		MinVersion:   tls.VersionTLS12,
    		CipherSuites: args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for xDS server TLS.
    	sec_model.EnforceGoCompliance(cfg)
    
    	tlsCreds := credentials.NewTLS(cfg)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top