emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a843266 1/2: Don’t mention :safe-renegotiation in


From: Robert Pluim
Subject: [Emacs-diffs] master a843266 1/2: Don’t mention :safe-renegotiation in TLS 1.3
Date: Wed, 4 Sep 2019 17:53:30 -0400 (EDT)

branch: master
commit a8432661130ac73ecf7606b1132e9b0d388ab60f
Author: Paul Eggert <address@hidden>
Commit: Robert Pluim <address@hidden>

    Don’t mention :safe-renegotiation in TLS 1.3
    
    * src/gnutls.c (Fgnutls_peer_status): Don’t put the
    safe-renegotiation indication into the status in TLS 1.3, which
    removed support for renegotiation.
---
 src/gnutls.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/src/gnutls.c b/src/gnutls.c
index 042f43e..c74936c 100644
--- a/src/gnutls.c
+++ b/src/gnutls.c
@@ -1487,10 +1487,10 @@ returned as the :certificate entry.  */)
                                  (gnutls_kx_get (state)))));
 
   /* Protocol name. */
+  gnutls_protocol_t proto = gnutls_protocol_get_version (state);
   result = nconc2
     (result, list2 (intern (":protocol"),
-                   build_string (gnutls_protocol_get_name
-                                 (gnutls_protocol_get_version (state)))));
+                   build_string (gnutls_protocol_get_name (proto))));
 
   /* Cipher name. */
   result = nconc2
@@ -1520,9 +1520,15 @@ returned as the :certificate entry.  */)
 #endif
 
   /* Renegotiation Indication */
-  result = nconc2
-    (result, list2 (intern (":safe-renegotiation"),
-                    gnutls_safe_renegotiation_status (state) ? Qt : Qnil));
+#ifdef GNUTLS_TLS1_3
+  bool older_proto = proto < GNUTLS_TLS1_3;
+#else
+  bool older_proto = true;
+#endif
+  if (older_proto)
+    result = nconc2
+      (result, list2 (intern (":safe-renegotiation"),
+                     gnutls_safe_renegotiation_status (state) ? Qt : Qnil));
 
   return result;
 }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]