password-hasher/README.md

27 lines
1.1 KiB
Markdown
Raw Normal View History

2016-05-10 14:54:13 -04:00
# password_hasher
2016-05-10 15:00:24 -04:00
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.
2016-05-10 15:21:43 -04:00
### Authors
2016-05-10 20:33:20 -04:00
* [Zak Timson](http://zakscode.com)
2016-05-10 15:21:43 -04:00
### License
GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. read LICENSE for more
### API
2016-05-10 15:02:40 -04:00
```
2016-05-10 15:00:24 -04:00
Usage: password_hash.py [options] PASSWORD
Options:
-h, --help show this help message and exit
-s SALT, --salt=SALT specify salt
-i ITERATIONS, --iterations=ITERATIONS
specify number of iterations to hash password
-o ORDER, --order=ORDER
order the password and salt ex. "ps" to append salt
--hash=HASH hash algorithm to be used
--hash-algorithms display available hash algorithms and exit
2016-05-10 15:02:40 -04:00
```
2016-05-10 15:21:43 -04:00
### Bug Reporting
2016-05-10 15:22:11 -04:00
Please submit bugs to the github [issue tracker](https://github.com/zaktimson/password_hasher/issues)