Function: auth-source-pass-parse-entry

auth-source-pass-parse-entry is a byte-compiled function defined in auth-source-pass.el.gz.

Signature

(auth-source-pass-parse-entry ENTRY)

Documentation

Return an alist of the data associated with ENTRY.

ENTRY is the name of a password-store entry.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source-pass.el.gz
(defun auth-source-pass-parse-entry (entry)
  "Return an alist of the data associated with ENTRY.

ENTRY is the name of a password-store entry."
  (let ((file-contents (ignore-errors (auth-source-pass--read-entry entry))))
    (and file-contents
         (cons `(secret . ,(auth-source-pass--parse-secret file-contents))
               (auth-source-pass--parse-data file-contents)))))