Command line and GUI interface to pass, the Unix password manager.
Go to file
Greg fc7a4c272e Improve comments, tweak default password prompt function. 2019-09-04 22:44:47 -04:00
cmd Add README.md. 2019-09-04 22:37:42 -04:00
.gitignore Initial commit 2019-09-04 22:19:39 -04:00
README.md Add README.md. 2019-09-04 22:37:42 -04:00
impl_darwin.go Improve comments, tweak default password prompt function. 2019-09-04 22:44:47 -04:00
main.go Improve comments, tweak default password prompt function. 2019-09-04 22:44:47 -04:00

README.md

gpass

This repository includes Go code to interact with pass, the Unix password manager. Library code is provided to open a password store, list saved passwords, and decrypt specified passwords. The library provides a simple passphrase input function, or, if gpg-agent is running (on MacOS), it will connect automatically to request your GPG passphrase.

store, err := gpass.GetStore()
if err != nil { ... }
passlist := store.List()
//storeDir := store.Dir
for _,x := range passlist {
	if x.Pathname = "myPass" {
		p, err := store.Decrypt(x.Pathname)
		if err == nil {
			gpass.Clip(p) // put on the clipboard
		} else {
			log.Fatal("Cannot decrypt ", x.Pathname)
		}
	}
}