Command line and GUI interface to pass, the Unix password manager.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Greg 54c2c00455 Add 'X' button to password filter. 3 years ago
cmd Add 'X' button to password filter. 3 years ago
.gitignore Update to latest Gio release. Install a system font on Darwin to 4 years ago
PgpConnect.jar Migrating to new Gio version (non-working version). 3 years ago
PgpConnect.java Migrating to new Gio version (non-working version). 3 years ago
README.md Documentation. 4 years ago
go.mod Migrating to new Gio version (non-working version). 3 years ago
go.sum Migrating to new Gio version (non-working version). 3 years ago
impl_android.go Migrating to new Gio version (non-working version). 3 years ago
impl_darwin.go Convert to git.wow.st/gmp/clip for Darwin clipboard. 4 years ago
impl_linux.go Fix build tags. 4 years ago
impl_shared.go Fix build tags. 4 years ago
jni_android.c Migrating to new Gio version (non-working version). 3 years ago
jni_android.go Migrating to new Gio version (non-working version). 3 years ago
jni_android.h Migrating to new Gio version (non-working version). 3 years ago
main.go Add cmd/passgo-gui files updated for Android implementation. 4 years ago
openpgp-api.jar Start of Android implementation. 4 years ago

README.md

passgo

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. On Android, passgo connects to OpenKeychain. MacOS and Android users can also ask passgo to copy a password directly to the clipboard.

store := passgo.Store{}
// directory defaults to ~/.password-store, or set it manually here:
// store.Dir = "/home/me/.pw-store"
err := passgo.GetStore(&store)
if err != nil { ... }
passlist := store.List()
for _,x := range passlist {
	if x.Pathname == "myPass" {
		p, err := store.Decrypt(x.Pathname)
		if err == nil {
			passgo.Clip(p) // put on the clipboard
		} else {
			log.Fatal("Cannot decrypt ", x.Pathname)
		}
	}
}
/// or just do:
p, err := store.Decrypt("myPass")
...

Also included is a simple GUI front-end using Gio that works on MacOS and Android. See cmd/passgo-gui.