Updated README.md

This commit is contained in:
Zakary Timson 2016-05-10 15:02:40 -04:00
parent 2d95c697cc
commit 2680e76d00

View File

@ -2,6 +2,7 @@
Python utility to hash passwords. Often when creating a user, a hashed password is needed. This cammond line utility can simply hash the password or multiple parameters can be passed to replicated. password, salt, hashing algorithm, pass+salt concatination order, and number of iterations can all be specified. Python utility to hash passwords. Often when creating a user, a hashed password is needed. This cammond line utility can simply hash the password or multiple parameters can be passed to replicated. password, salt, hashing algorithm, pass+salt concatination order, and number of iterations can all be specified.
## help ## help
```
Usage: password_hash.py [options] PASSWORD Usage: password_hash.py [options] PASSWORD
Options: Options:
@ -13,3 +14,4 @@ Options:
order the password and salt ex. "ps" to append salt order the password and salt ex. "ps" to append salt
--hash=HASH hash algorithm to be used --hash=HASH hash algorithm to be used
--hash-algorithms display available hash algorithms and exit --hash-algorithms display available hash algorithms and exit
```