Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rsaKexCiphers (0.1 sec)

  1. src/crypto/tls/defaults.go

    func defaultCipherSuites() []uint16 {
    	suites := slices.Clone(cipherSuitesPreferenceOrder)
    	return slices.DeleteFunc(suites, func(c uint16) bool {
    		return disabledCipherSuites[c] ||
    			tlsrsakex.Value() != "1" && rsaKexCiphers[c] ||
    			tls3des.Value() != "1" && tdesCiphers[c]
    	})
    }
    
    // defaultCipherSuitesTLS13 is also the preference order, since there are no
    // disabled by default TLS 1.3 cipher suites. The same AES vs ChaCha20 logic as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top