Function: password-read-from-cache

password-read-from-cache is a byte-compiled function defined in password-cache.el.gz.

Signature

(password-read-from-cache KEY)

Documentation

Obtain passphrase for KEY from time-limited passphrase cache.

Custom variables password-cache and password-cache-expiry regulate cache behavior.

Source Code

;; Defined in /usr/src/emacs/lisp/password-cache.el.gz
(defun password-read-from-cache (key)
  "Obtain passphrase for KEY from time-limited passphrase cache.
Custom variables `password-cache' and `password-cache-expiry'
regulate cache behavior."
  (and password-cache
       key
       (gethash key password-data)))