Metadata-Version: 2.1
Name: shadog
Version: 1.0.23
Summary: Shadog
Home-page: https://gitlab.com/tiago.alexandre.aragao
Download-URL: https://gitlab.com/tiago.alexandre.aragao
Author: Tiago Alexandre Soares Aragão
Author-email: tiago.alexandre.aragao@gmail.com
License: MIT
Keywords: crypto,sha512
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Shadog - Encrypt string

## Usage:
### install with pip:
```shell
pip install shadog
```

### Import on your code:
```python
from shadog import crypto

test = crypto.sha512('Teste')

print(test)
```
