Metadata-Version: 2.0
Name: hashes
Version: 1.1.0
Summary: A tool to quickly hash plaintext strings, or compare hashed values with a plaintext.
Home-page: https://github.com/ChrisTruncer/Hasher
Author: Christopher Truncer
Author-email: UNKNOWN
License: GPL 3
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Utilities
Requires-Dist: passlib (>=1.6.1)
Requires-Dist: py-bcrypt (>=0.4)
Requires-Dist: argparse; python_version=="2.6"

Hashes
======

Hashes is a tool to quickly hash plaintext strings, or compare hashed values with a plaintext. The reason I wrote this is because when on an assessment, I don't, and won't, send hashes that I found to an online "hash generator" that I don't trust.  I'd rather have an easy way to generate hash values, or compare hashes to plaintext values, quickly.  Hashes does this.

Install:

```
# Create a virtualenv (e.g. venv)
virtualenv venv
# Activate the environment and install the requirements
source venv/bin/activate
pip install hashes
```

Use:
It's menu driven, if you have questions, just ask me

There are also command line options that can be shown with the -h or --help flag
```
hashes --help
```


