diff options
author | Aaron Ball <nullspoon@oper.io> | 2020-10-12 19:11:16 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2020-10-12 19:11:16 -0600 |
commit | c6a6581996b2367056c0782f3b5e42bd691d8f53 (patch) | |
tree | 9076ad3ee4db6c365d5f5f14131979f96228b640 /Makefile | |
download | kcpasswd-c6a6581996b2367056c0782f3b5e42bd691d8f53.tar.gz kcpasswd-c6a6581996b2367056c0782f3b5e42bd691d8f53.tar.xz |
This can encrypt the given password, passed as the first argument.
The encrypted value is written to stdout, so to use it it must be
redirected to the intended path.
If the first argument is a path to a file, the file will be read and
decrypted to stdout.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0d33524 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +CCOPTS = --std=c99 -Wall -Werror -O2 + +all: + cc $(CCOPTS) -o kcpasswd main.c |