Metadata-Version: 2.1
Name: python-pgp-check
Version: 0.2.0
Summary: A CLI tool to verify file hashes
Home-page: https://github.com/iiroan/python-pgp-check
Author: IRoan
Author-email: pypi@lunary.roan.zip
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Python PGP Check

A quick python CLI tool to verify file PGP hashes


### Installation and usage

Install it with python pip using 

``` bash
    pip install python-pgp-check
```

Use it like this

```bash
    python-pgp-check <file_path> <expected_hash> 
``` 

### Specifying Hash Algorithm

By default, SHA-256 is used. To use a different algorithm:

```bash
 python-pgp-check <file_path> <expected_hash> --algorithm <algorithm> 
 ``` 

