djpass (Djando Passwords)

Build Status

A command-line tool to generate and verify passwords used in Django Project.

Installation

You can compile from source, or install via cargo (requires version 0.6.0 or higher):

$ cargo install djpass

Usage

Generating a Password Hash

If you run without arguments a password will be asked:

$ djpass Password: [password] Hash: pbkdf2_sha256$24000$...

Passing the password as a single argument will return the hash:

$ djpass hello Hash: pbkdf2_sha256$24000$...

You can also specify the algorithm used:

$ djpass hello -a sha1 Hash: sha1$hzPiRIKYykm8$23...

Algorithms:

The algorithm argument is case-insensitive.

Verifying a Password Hash

$ djpass hello 'sha1$hzPiRIKYykm8$23...' Password ok.

If you pass an algorithm during verification it will be ignored.

Contributing

License

Djpass is released under the 3-Clause BSD License.

tl;dr: "free to use as long as you credit me".