This program was created by papv2 for the purposes of fulfilling a coding task for [redacted].
This program is designed to do a few things sequentially:
pull passwords from a json file (users.json)
hash the passwords
compare it with passwords from haveibeenpwned's API
return results if a password has been pwned
create a report for the results
This script relies on the requests external library. Please run the below command before running the script (MUST have python3-pip!):
```
pip install -r requirements.txt
```
```
python3 main.py
```