Metadata-Version: 2.1
Name: dhasher
Version: 0.1.1
Summary: A python library for password hashing and verification existing password hashes
Home-page: UNKNOWN
Author: Geoffrey Israel
Author-email: israelgeoffrey13@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

## dhasher
- A python library for password hashing and verification of existing password hashes

### how to use 

1. Install package

```
pip install dhasher

```
2. import the package 

```
from dhasher import myhash

```
3. hashing a value

```
res=myhash.do_hash("father")
output> '88a1881f0025cf7117501d07aefc5d4be6696656790d765678df8bc48ca52687'

```
4. comparing of new value with previously hashed value res

```
myhash.verify_hash("father",res)
output> True

myhash.verify_hash("mother",res)
output> False

```






