Blame


1 5cdf5adc 2022-05-08 op # plass -- manage passwords
2 5cdf5adc 2022-05-08 op
3 5cdf5adc 2022-05-08 op plass is a password manager inspired by password-store, but
4 5cdf5adc 2022-05-08 op reimplemented with a smaller and (IMHO) cleaner interface. It doesn't
5 9971b7f8 2022-06-29 op have fancy trees nor colors in the output; the absence of these is
6 9971b7f8 2022-06-29 op considered a feature.
7 5cdf5adc 2022-05-08 op
8 5cdf5adc 2022-05-08 op In addition, plass uses got(1) to manage the password store (but can
9 93815d64 2022-06-29 op be easily patched to use git(1) if desired.)
10 5cdf5adc 2022-05-08 op
11 5cdf5adc 2022-05-08 op At the moment plass is completely compatible with pass, the same gpg2
12 5cdf5adc 2022-05-08 op commands are used to decrypt and encrypt the passwords entries. In
13 5cdf5adc 2022-05-08 op the future, I'd like to switch the encryption tool to either signify
14 5cdf5adc 2022-05-08 op or age.
15 5cdf5adc 2022-05-08 op
16 5cdf5adc 2022-05-08 op
17 5cdf5adc 2022-05-08 op ## License
18 5cdf5adc 2022-05-08 op
19 5cdf5adc 2022-05-08 op plass is free software distributed under the ISC license
20 5cdf5adc 2022-05-08 op
21 5cdf5adc 2022-05-08 op Copyright (c) 2022 Omar Polo
22 5cdf5adc 2022-05-08 op
23 5cdf5adc 2022-05-08 op Permission to use, copy, modify, and distribute this software for any
24 5cdf5adc 2022-05-08 op purpose with or without fee is hereby granted, provided that the above
25 5cdf5adc 2022-05-08 op copyright notice and this permission notice appear in all copies.
26 5cdf5adc 2022-05-08 op
27 5cdf5adc 2022-05-08 op THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
28 5cdf5adc 2022-05-08 op WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
29 5cdf5adc 2022-05-08 op MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
30 5cdf5adc 2022-05-08 op ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
31 5cdf5adc 2022-05-08 op WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
32 5cdf5adc 2022-05-08 op ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
33 5cdf5adc 2022-05-08 op OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34 5cdf5adc 2022-05-08 op