]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix problems with non-ASCII non-encoded PGP names
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 21 Sep 2021 05:12:35 +0000 (07:12 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 21 Sep 2021 05:12:35 +0000 (07:12 +0200)
* lisp/epg.el (epg-signature-to-string): User IDs may be
non-encoded, non-ASCII (bug#50706).

lisp/epg.el

index a461afac34bce3f3459e4fd7d6d69466b45ea2a0..1d37cbcfb577bed7723950d7e748000eef2f07b4 100644 (file)
@@ -433,7 +433,11 @@ callback data (if any)."
      (and user-id
          (concat " "
                  (if (stringp user-id)
-                     (rfc6068-unhexify-string user-id)
+                      (if (= (length user-id) (string-bytes user-id))
+                          ;; This is ASCII, possibly %-encoded.
+                         (rfc6068-unhexify-string user-id)
+                        ;; Non-ASCII, return as is.
+                        user-id)
                    (epg-decode-dn user-id))))
      (and (epg-signature-validity signature)
          (format " (trust %s)"  (epg-signature-validity signature)))