password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit ad4fc762750781eac1747cf6d993ccba1434781d
parent e25114c4c09be5f055fd2784f420681488ef5df0
Author: Svend Sorensen <svend@ciffer.net>
Date:   Wed,  7 May 2014 15:29:05 -0700

Implement interactive init function

Diffstat:
Mcontrib/emacs/password-store.el | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/contrib/emacs/password-store.el b/contrib/emacs/password-store.el @@ -186,6 +186,14 @@ after `password-store-timeout' seconds." (run-at-time password-store-timeout nil 'password-store-clear))) ;;;###autoload +(defun password-store-init (gpg-id) + "Initialize new password store and use GPG-ID for encryption. + +Separate multiple IDs with spaces." + (interactive (list (read-string "GPG ID: "))) + (message (password-store--run-init (split-string gpg-id)))) + +;;;###autoload (defun password-store-insert (entry password) "Insert a new ENTRY containing PASSWORD." (interactive (list (read-string "Password entry: ")