Variable: tramp-security-key-timeout-regexp

tramp-security-key-timeout-regexp is a customizable variable defined in tramp.el.gz.

Value

"^
*sign_and_send_pubkey: signing failed for .*[\n
]*"

Documentation

Regular expression matching security key timeout message.

The regexp should match at end of buffer.

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defcustom tramp-security-key-timeout-regexp
  (rx bol (* "\r") "sign_and_send_pubkey: signing failed for "
      (* nonl) (* (any "\r\n")))
  "Regular expression matching security key timeout message.
The regexp should match at end of buffer."
  :version "28.1"
  :type 'regexp)