https://github.com/dethada/sze
Spinning Zebra Encryption 🦓
https://github.com/dethada/sze
Last synced: 24 days ago
JSON representation
Spinning Zebra Encryption 🦓
- Host: GitHub
- URL: https://github.com/dethada/sze
- Owner: Dethada
- License: mit
- Created: 2018-11-14T15:12:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-14T15:13:17.000Z (over 7 years ago)
- Last Synced: 2025-02-23T03:54:45.513Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 490 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spinning Zebra Encryption
This algorithm revolves around the use of matrix multiplication and
XOR. The algorithm has a key size of 213 bits. Detailed explaination of the algorithm [here](SZE.pdf).
## Sample Usage
```bash
~/Projects/SZE
➜ ./sze.py -e
Plaintext: hello
Ciphertext b85: 2U3@f2a-ZBUl6Z4(_pd2Qe-@ws6FPPlW$W
Key: 1dbf13ab78b8c80a4fec8b71150ac597723320480d04242b0c1c07
~/Projects/SZE
➜ ./sze.py -d
Ciphertext: 2U3@f2a-ZBUl6Z4(_pd2Qe-@ws6FPPlW$W
Key: 1dbf13ab78b8c80a4fec8b71150ac597723320480d04242b0c1c07
Plaintext
hello
```