A password manager written in C using the gtk3 library.

redacted e33a37e633 modified password generator and restructured 2 kuukautta sitten
build e33a37e633 modified password generator and restructured 2 kuukautta sitten
data 82de738855 cleaned up whitespace shenanigans, moved screenshot to data, updated readme and removed stdio from main.c. 2 kuukautta sitten
src e33a37e633 modified password generator and restructured 2 kuukautta sitten
README.md febae76e85 updated readme 2 kuukautta sitten
crypt e33a37e633 modified password generator and restructured 2 kuukautta sitten
crypt_cli e33a37e633 modified password generator and restructured 2 kuukautta sitten
main_cli.c e33a37e633 modified password generator and restructured 2 kuukautta sitten
makefile e33a37e633 modified password generator and restructured 2 kuukautta sitten

README.md

Password manager written in C/GTK3

About

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.

Dependencies

GTK3

Crypt usage

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.