From a8746315ff0576872baf8bfc8bbe89557c6b9f4b Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sat, 15 Mar 2025 08:46:28 -0400 Subject: [PATCH] Add gnutls-verify-error and tls-checktrust --- early-init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index d2075fd..5321cba 100644 --- a/early-init.el +++ b/early-init.el @@ -390,7 +390,9 @@ this stage of initialization." (setq use-dialog-box nil)) ;;; Security -(setq gnutls-min-prime-bits 3072) +(setq gnutls-verify-error t) ; Prompts user if there are certificate issues +(setq tls-checktrust t) ; Ensure SSL/TLS connections undergo trust verification +(setq gnutls-min-prime-bits 3072) ; Stronger GnuTLS encryption ;;; package.el (setq use-package-compute-statistics minimal-emacs-debug)