Metadata-Version: 2.1
Name: cryptology
Version: 0.0.5
Summary: Decrypt/Encrypt text using various cipher techniques
Home-page: UNKNOWN
Author: Antonio Felton
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Cryptology
This is a package which decrypt/encrypts text using a few different methods.

## Installation
Run the following to install:

```python
pip3 instal cryptology
```

## Usage
```python
from cryptology import atbash_decrypt

# Generate decryption
string=atbash_decrypt(cipher_text="GSRHRHMLGEVIBHVXIVGZGZOO")

print(string)
```



