Commit Briefs

Omar Polo

remove `got add' workaround (main)

earlier version of got would fail when trying to `got add' a file that was already added (or committed.) Since the error message was potentially scary, got_add tries to be smart and issue a `got info file' first to see whether the file can be added, and only then eventually issues `got add'. This whole dance is now moot. got doesn't warn for files already added. (also, this code could have been simpler from the beginning.) Noticed since the pipe trick in the got sub was failing on linux. Issue reported by Christoph Cremer, thanks!


Omar Polo

use gpg --batch --yes instead of redirecting standard output

last time I couldn't find the right incantation to prevent gpg from prompting when the target file already exists.


Omar Polo

release 0.7 (tags/0.7)


Omar Polo

tweak pwg.1 DESCRIPTION


Omar Polo

don't decode the whole ARGV, just the pattern for cmd_find

UNICODE is subtle, better not slightly tweaks the argument unless we really need them.


Branches

Tags

Tree

.gitignorecommits | blame
Makefilecommits | blame
README.mdcommits | blame
plass*commits | blame
plass.1commits | blame
pwg*commits | blame
pwg.1commits | blame
totp.1commits | blame
totp.ccommits | blame

README.md

# plass -- manage passwords

plass is a password manager inspired by password-store in the essence
but completely reimplemented with a smaller and (IMO) cleaner interface.
It doesn't have fancy trees nor colors in the output; the absence of
these is considered a feature.  It aims to stay closer to the "UNIX
phylosophy" by trying to do one thing only and to it (hopefully) well.

With plass every password lives inside a gpg(1) encrypted file somewhere
inside `~/.password-store` which is managed with the got(1) VCS to keep
track changes, recovery accidental overwrites and synchronize it across
devices.  Two helper utilities are bundled:

 - pwg(1): password/passphrase generator
 - totp(1): TOTP generator

To build and install it, execute

	$ make
	$ doas make install

For casual use, an `install-local` target that only copies the programs
in ~/bin is provided.

At the moment plass is completely compatible with pass, but in the
future the encryption tool may be switched to something different to
gpg.


## License

plass is free software distributed under the ISC license

	Copyright (c) 2022, 2023 Omar Polo

	Permission to use, copy, modify, and distribute this software for any
	purpose with or without fee is hereby granted, provided that the above
	copyright notice and this permission notice appear in all copies.

	THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
	WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
	MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
	ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
	WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
	ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
	OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.