A password manager written in C using the gtk3 library.
redacted e33a37e633 modified password generator and restructured | 2 months ago | |
---|---|---|
build | 2 months ago | |
data | 2 months ago | |
src | 2 months ago | |
README.md | 2 months ago | |
crypt | 2 months ago | |
crypt_cli | 2 months ago | |
main_cli.c | 2 months ago | |
makefile | 2 months ago |
Password manager written in C/GTK3
This is a password generator and acts as a password manager by generating the same output when provided with the same input.
The program is not cryptographically safe and the randomization is dependent on your input.
GTK3
If you wish to generate from file you must pass in a csv file at execution (e.g. ./crypt data/example.csv)
The format of the CSV file must be as follows:
service, username, length, special(1 or 0)
...
Check the example.csv as well.