Command line and GUI interface to pass, the Unix password manager.
Go to file
Greg Pomerantz e7218b1efd Complete the Gio v0.10.2 GUI migration (working on Android).
- Event loop: call w.Event() and FrameEvent.Frame() on the same
  goroutine; no channel bridge (the bridge broke frame rendering).
- clip: use clip.UniformRRect(...).Push(gtx.Ops) / Pop() for real
  clipping in layoutRRect (old .Add(ops) painted unclipped).
- Window clear color is white in v0.10.2.
- Fonts: always provide gofont; on Android use
  WithCollection(gofont.Collection()).
- Button labels: explicitly set Color (zero-value NRGBA has A=0,
  i.e. transparent, so labels were invisible).
- Filter: detect changes by comparing the editor text, since
  material.Editor.Layout consumes the editor's input events
  internally and a later FilterEd.Update(gtx) never sees them.
- idPage: persist the manually entered ID with store.SetID (on
  Android nativeIdentities is unimplemented, so there are no id
  buttons to click).
- Use U+2026 (gofont) instead of U+22EE (not in gofont) for the
  menu button.
- Split getConfDir/noidLabelText out into impl_linux.go for the
  Linux build.
2026-08-21 13:00:35 -04:00
cmd Complete the Gio v0.10.2 GUI migration (working on Android). 2026-08-21 13:00:35 -04:00
.gitignore Complete the Gio v0.10.2 GUI migration (working on Android). 2026-08-21 13:00:35 -04:00
go.mod Bump dependencies: gioui.org v0.10.2, fsnotify v1.8.0, go 1.24. 2026-08-21 12:59:51 -04:00
go.sum Bump dependencies: gioui.org v0.10.2, fsnotify v1.8.0, go 1.24. 2026-08-21 12:59:51 -04:00
impl_android.go passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
impl_darwin.go passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
impl_linux.go passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
impl_shared.go passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
jni_android.c Migrating to new Gio version (non-working version). 2020-08-31 17:03:07 -04:00
jni_android.go passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
jni_android.h Migrating to new Gio version (non-working version). 2020-08-31 17:03:07 -04:00
main.go passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
openpgp-api.jar Start of Android implementation. 2019-11-20 11:52:19 -05:00
PgpConnect.jar passgo package: modernize for go 1.24; reset store.Empty in GetStore. 2026-08-21 13:00:04 -04:00
PgpConnect.java Migrating to new Gio version (non-working version). 2020-08-31 17:03:07 -04:00
README.md Documentation. 2019-11-26 13:31:21 -05:00

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.