Function: tramp-parse-shostkeys

tramp-parse-shostkeys is a byte-compiled function defined in tramp.el.gz.

Signature

(tramp-parse-shostkeys DIRNAME)

Documentation

Return a list of (user host) tuples allowed to access.

User is always nil.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-parse-shostkeys (dirname)
  "Return a list of (user host) tuples allowed to access.
User is always nil."
  (tramp-parse-shostkeys-sknownhosts
   dirname
   (rx bol "key_" (+ digit) "_" (group (regexp tramp-host-regexp)) ".pub" eol)))