Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InsecureTLSCiphers (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    	}
    	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++ {
    			for cipherName, cipherID := range insecureCiphers {
    				if s.CipherSuites[i] == cipherID {
    					klog.Warningf("Use of insecure cipher '%s' detected.", cipherName)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		}
    	}
    
    	tlsCipherSuites, err := cliflag.TLSCipherSuites(kc.TLSCipherSuites)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(tlsCipherSuites) > 0 {
    		insecureCiphers := cliflag.InsecureTLSCiphers()
    		for i := 0; i < len(tlsCipherSuites); i++ {
    			for cipherName, cipherID := range insecureCiphers {
    				if tlsCipherSuites[i] == cipherID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top