- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TLSCiphersBackwardCompatible (0.08 sec)
-
internal/crypto/crypto.go
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, } } // TLSCiphersBackwardCompatible returns a list of supported // TLS transport cipher suite IDs. // // In contrast to TLSCiphers, the list contains additional // ciphers for backward compatibility. In particular, AES-CBC // and non-ECDHE ciphers. func TLSCiphersBackwardCompatible() []uint16 { return []uint16{ tls.TLS_CHACHA20_POLY1305_SHA256, // TLS 1.3Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sat Jul 19 06:23:15 UTC 2025 - 2.8K bytes - Viewed (0) -
cmd/utils.go
s := xhttp.ConnSettings{ LookupHost: globalDNSCache.LookupHost, DialTimeout: defaultDialTimeout, RootCAs: globalRootCAs, CipherSuites: crypto.TLSCiphersBackwardCompatible(), CurvePreferences: crypto.TLSCurveIDs(), TCPOptions: globalTCPOptions, EnableHTTP2: false, } if clientCert != "" && clientKey != "" {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 33K bytes - Viewed (0) -
internal/config/identity/ldap/config.go
ServerName: host, MinVersion: tls.VersionTLS12, NextProtos: []string{"h2", "http/1.1"}, ClientSessionCache: tls.NewLRUClientSessionCache(100), CipherSuites: crypto.TLSCiphersBackwardCompatible(), // Contains RSA key exchange RootCAs: rootCAs, }, } // Parse explicitly set enable=on/off flag. isEnableFlagExplicitlySet := false if v := getCfgVal(config.Enable); v != "" {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Sep 18 11:47:48 UTC 2025 - 8.6K bytes - Viewed (0)