commit 07f9d567190a45a3d6e559aa3fbbbd1e5127f4c0
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Wed Jul 15 16:11:01 2020 +0200
Update gnutls patch
0001-Use-SYSTEM-wide-ciphers-for-gnutls.patch | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/0001-Use-SYSTEM-wide-ciphers-for-gnutls.patch
b/0001-Use-SYSTEM-wide-ciphers-for-gnutls.patch
index 81983be..da5d8c4 100644
--- a/0001-Use-SYSTEM-wide-ciphers-for-gnutls.patch
+++ b/0001-Use-SYSTEM-wide-ciphers-for-gnutls.patch
@@ -1,9 +1,9 @@
-From 680849e6b9ced55fe8ac61771fd57e694c9ff79c Mon Sep 17 00:00:00 2001
+From 3039aec58203513f29edb03f84471ea941a0c226 Mon Sep 17 00:00:00 2001
From: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Mon, 24 Sep 2018 18:28:26 +0200
Subject: [PATCH] Use @SYSTEM wide ciphers for gnutls
-Gnutls upstream has support for system
+Gnutls upstream has support for system defined ciphers list
This is decribed at
https://fedoraproject.org/wiki/Packaging:CryptoPolicies
Also found on the debian wiki
@@ -15,10 +15,10 @@ Signed-off-by: Nicolas Chauvet <kwizart(a)gmail.com>
1 file changed, 2 insertions(+)
diff --git a/modules/misc/gnutls.c b/modules/misc/gnutls.c
-index 1b214358d4..05b4209692 100644
+index 7b63cc34c4..3ca665f3d3 100644
--- a/modules/misc/gnutls.c
+++ b/modules/misc/gnutls.c
-@@ -768,6 +768,7 @@ static void CloseServer (vlc_tls_creds_t *crd)
+@@ -768,12 +768,14 @@ static void CloseServer (vlc_tls_creds_t *crd)
"hash functions and compression methods can be selected. " \
"Refer to GNU TLS documentation for detailed syntax.")
static const char *const priorities_values[] = {
@@ -26,8 +26,7 @@ index 1b214358d4..05b4209692 100644
"PERFORMANCE",
"NORMAL",
"SECURE128",
-@@ -775,6 +776,7 @@ static const char *const priorities_values[] = {
- "EXPORT",
+ "SECURE256",
};
static const char *const priorities_text[] = {
+ N_("System (default to system crypto ciphers policy)"),
@@ -35,5 +34,5 @@ index 1b214358d4..05b4209692 100644
N_("Normal"),
N_("Secure 128-bits (exclude 256-bits ciphers)"),
--
-2.17.2
+2.25.4