Blob


1 # plass -- manage passwords
3 plass is a password manager inspired by password-store in the essence
4 but completely reimplemented with a smaller and (IMO) cleaner interface.
5 It doesn't have fancy trees nor colors in the output; the absence of
6 these is considered a feature. It aims to stay closer to the "UNIX
7 phylosophy" by trying to do one thing only and to it (hopefully) well.
9 With plass every password lives inside a gpg(1) encrypted file somewhere
10 inside `~/.password-store` which is managed with the got(1) VCS to keep
11 track changes, recovery accidental overwrites and synchronize it across
12 devices. Two helper utilities are bundled:
14 - pwg(1): password/passphrase generator
15 - totp(1): TOTP generator
17 To build and install it, execute
19 $ make
20 $ doas make install
22 For casual use, an `install-local` target that only copies the programs
23 in ~/bin is provided.
25 At the moment plass is completely compatible with pass, but in the
26 future the encryption tool may be switched to something different to
27 gpg.
30 ## License
32 plass is free software distributed under the ISC license
34 Copyright (c) 2022, 2023 Omar Polo
36 Permission to use, copy, modify, and distribute this software for any
37 purpose with or without fee is hereby granted, provided that the above
38 copyright notice and this permission notice appear in all copies.
40 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
41 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
42 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
43 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
44 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
45 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
46 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.