> $ git grep "NORMAL:-VERS-SSL3.0" > doc/external/gnutls-priorities.xml.in: "NORMAL:-VERS-SSL3.0", which means the standard, secure GnuTLS > doc/scripts/insert-gnutls-lists.py: format_output(_call_gnutls(["--priority", "NORMAL:-VERS-SSL3.0"])) > tladm/tlwebadm/tlwebadm: priority = hive.get_string("/%s/gnutls_priority" % CONFIGPATH, "NORMAL:-VERS-SSL3.0") > tladm/tlwebadm/tlwebadm.hconf:gnutls_priority=NORMAL:-VERS-SSL3.0 > tlmisc/tlstunnel/tlstunnel.c:static char priority[1024] = "NORMAL:-VERS-SSL3.0"; > webaccess/tlwebaccess: priority = hive.get_string("/%s/gnutls_priority" % CONFIGPATH, "NORMAL:-VERS-SSL3.0") > webaccess/webaccess.hconf:gnutls_priority=NORMAL:-VERS-SSL3.0 It would be nice to get rid of a few of these hard-coded strings and read them from a single source instead.
Perhaps we should have an empty priority and instead rely on gnutls_set_default_priority(): https://gnutls.org/manual/html_node/Core-TLS-API.html#gnutls_005fset_005fdefault_005fpriority This might also help us solve bug 5956?
(In reply to Pierre Ossman from comment #1) > This might also help us solve bug 5956? That should be bug 5948.