emacs lisp で keychain から password とりだす
auth-source.el をつかいます。(標準 elisp)
たとえば
security add-generic-password -a hogetarou -w PASSWORD -s myservice
で保存したものは
(let ((auth-sources '(macos-keychain-generic))
(cred (auth-source-search :max 1 :user "hogetarou" :require '(:secret))))
(unless (null cred)
(setq my-secret (funcall (plist-get (nth 0 cred) :secret)))))
で。
auth-sources に設定できる keychain の種類には macos-keychain-internet
ってのもあるので、web のログイン情報とかもとれる
tramp は auth-source つかってくれるので、auth-sources に設定してアレばそっちをみにいってくれれ幸せになる人もいる
Author And Source
この問題について(emacs lisp で keychain から password とりだす), 我々は、より多くの情報をここで見つけました https://qiita.com/sheercat/items/bda09343aeb6830e7eba著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .