Function: password-in-cache-p

password-in-cache-p is an autoloaded and byte-compiled function defined in password-cache.el.gz.

Signature

(password-in-cache-p KEY)

Documentation

Check if KEY is in the cache.

Source Code

;; Defined in /usr/src/emacs/lisp/password-cache.el.gz
;;;###autoload
(defun password-in-cache-p (key)
  "Check if KEY is in the cache."
  (and password-cache
       key
       (hash-table-contains-p key password-data)))