]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor Tramp doc adaption
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 14 Feb 2024 16:27:43 +0000 (17:27 +0100)
committerEshel Yaron <me@eshelyaron.com>
Sat, 17 Feb 2024 13:01:14 +0000 (14:01 +0100)
* doc/misc/tramp.texi (Frequently Asked Questions): Be more
precise with FIDO2 keys.

* lisp/net/tramp.el: Adapt comments.

(cherry picked from commit 0c7c8210cb6a87a06b61451d19f3601975569946)

doc/misc/tramp.texi
lisp/net/tramp.el

index bdc7de375561a27697fa0ab9e72f75a1748fe74a..d8ed22e77a34167c7c5852495dcf12d4bb49000b 100644 (file)
@@ -5243,8 +5243,8 @@ the additional handshaking messages for them.  This requires at least
 nitrokey, or titankey.
 @c @uref{https://docs.fedoraproject.org/en-US/quick-docs/using-yubikeys/}
 
-@strong{Note} that there are reports on problems of handling yubikey
-residential keys by @command{ssh-agent}.  As workaround, you might
+@strong{Note} that there are reports on problems of handling FIDO2
+(residential) keys by @command{ssh-agent}.  As workaround, you might
 disable @command{ssh-agent} for such keys.
 
 @item
index 3c63d3fe6c32dbb710a88911f32a16e87e03d42a..08444e020b80a1422fb524ad3dfeafd9889eae09 100644 (file)
@@ -745,9 +745,8 @@ The regexp should match at end of buffer."
 
 ;; A security key requires the user physically to touch the device
 ;; with their finger.  We must tell it to the user.
-;; Added in OpenSSH 8.2.  I've tested it with yubikey.  Nitrokey and
-;; Titankey, which have also passed the tests, do not show such a
-;; message.
+;; Added in OpenSSH 8.2.  I've tested it with Nitrokey, Titankey, and
+;; Yubikey.
 (defcustom tramp-security-key-confirm-regexp
   (rx bol (* "\r") "Confirm user presence for key " (* nonl) (* (any "\r\n")))
   "Regular expression matching security key confirmation message.
@@ -770,6 +769,7 @@ The regexp should match at end of buffer."
   :version "28.1"
   :type 'regexp)
 
+;; Needed only for FIDO2 (residential) keys.  Tested with Nitrokey and Yubikey.
 (defcustom tramp-security-key-pin-regexp
   (rx bol (* "\r") (group "Enter PIN for " (* nonl)) (* (any "\r\n")))
   "Regular expression matching security key PIN prompt.