diff options
author | chupax <leonardja3@protonmail.com> | 2024-08-20 09:50:20 -0500 |
---|---|---|
committer | chupax <leonardja3@protonmail.com> | 2024-08-20 09:50:20 -0500 |
commit | b2df2a824a78f2beebdbc0c0d5b08bb0bd566c4b (patch) | |
tree | f91428bb5b7865ea0d43c047054a5a5dd0cafea9 /Makefile |
First commit
Generates one random password. 5 digit number, random word w/ random case, and random characters
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..013d033 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +password: password.c + gcc -o output password.c -lsodium |