this project is under development, and hasn't been reviewd by a cryptographer other limitations
A CLI that consistently generates passwords given the same input.
CPG is not a password manager, but can be used as an additional security layer on top of it.
The actual password used to sign up, and sign in, to services wont be stored anywhere as it will be recreated every time instead.
input > salt => password
^ ^ ^
| | |
store it genrated use it to
online or and stored sign up and sign in
remember it locally to services
cargo install cpg
installing binaries with cargo install, install rust and cargo
-p
list of passwords to salt
-s
path to the salt to use (optional)
--help
usage help
--version
salty version
! this is an example, you should use stronger inputs
``` [9elt@salty ~]$ salty -p mybirthday iloveyou "mickey mouse"
mybirthday => 0#B[?7WZbufDrh#z{nJXPD8G6pP]BGQk iloveyou => g3s5PKVbm1NK8UZFlyjxgsA%g5urG05# mickey mouse => 1,it6rT^%=#geUO853q|€%B#@T4B"fjy ```
there is no salt encryption method yet, if you want to share a salt across devices, make sure to encrypt it first.
hasn't been tested on windows.