Function: auth-info-password
auth-info-password is a byte-compiled function defined in
auth-source.el.gz.
Signature
(auth-info-password AUTH-INFO)
Documentation
Return the :secret password from the AUTH-INFO.
Aliases
tramp-compat-auth-info-password
Source Code
;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defun auth-info-password (auth-info)
"Return the :secret password from the AUTH-INFO."
(let ((secret (plist-get auth-info :secret)))
(if (functionp secret)
(funcall secret)
secret)))