mirror of https://github.com/getdnsapi/getdns.git
Merge branch 'devel/no-tls1.3-in-cipher_list' into develop
This commit is contained in:
commit
426b6f67dd
|
@ -1468,9 +1468,13 @@ static char const * const _getdns_default_trust_anchors_verify_CA =
|
|||
static char const * const _getdns_default_trust_anchors_verify_email =
|
||||
"dnssec@iana.org";
|
||||
|
||||
|
||||
static char const * const _getdns_default_tls_cipher_list =
|
||||
#ifndef HAVE_SSL_CTX_SET_CIPHERSUITES
|
||||
"TLS13-AES-256-GCM-SHA384:TLS13-AES-128-GCM-SHA256:"
|
||||
"TLS13-CHACHA20-POLY1305-SHA256:EECDH+AESGCM:EECDH+CHACHA20";
|
||||
"TLS13-CHACHA20-POLY1305-SHA256:"
|
||||
#endif
|
||||
"EECDH+AESGCM:EECDH+CHACHA20";
|
||||
|
||||
static char const * const _getdns_default_tls_ciphersuites =
|
||||
"TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256";
|
||||
|
|
Loading…
Reference in New Issue