Metadata-Version: 2.1
Name: cp32
Version: 1.0.0
Summary: simple cipher
Home-page: https://github.com/wew1234GD/32BitCipher
Author: wew1234GD
Author-email: candyfoxowo28@gmail.com
License: MIT
Platform: UNKNOWN
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
License-File: LICENSE

# 32BitCipher

open source: https://github.com/wew1234GD/32BitCipher

### usage:
```python
import cp32

cipher = cp32.e32BitCipher() # type your key or leave it blank (default key =  0x1AC32B4D)
#cipher = e32BitCipher(key=0x1A2B3C4D) 

encrypted = cipher.encrypt("test")

print(encrypted)  # encrypted XoR
decrypted = cipher.decrypt(encrypted)
print(decrypted) # decrypted XoR 
```

```bash
git clone https://github.com/wew1234GD/32BitCipher
```

