Metadata-Version: 2.1
Name: tea-encrypt
Version: 0.0.1
Summary: tea_encrypt
Home-page: https://github.com/fiefdx/tea_encrypt
Author: fiefdx
Author-email: fiefdx@163.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# tea_encrypt

encrypt & decrypt string(bytes) with interleaving and padding random numbers TEA


## Install

```bash
$ pip3 install tea_encrypt
```

## Usage
```python
from tea_encrypt import EncryptStr, DecryptStr

k = b"de1182b0f4203cad8d2ec629e35403d7"
v = b"this is a test"

encrypt_bytes = EncryptStr(v, k)
original_bytes = DecryptStr(encrypt_bytes, k)
```


