Enyo is a lightweight multistage partition based encryption algorithm.
It consists of two main modules:
enyoencryption: Enyo Encryption algorithm moduleenyodecryption: Enyo Decryption algorithm module
from enyo.enyoencryption import EnyoEncryption
# Third parameter is optional partition (by default 2)
test = EnyoEncryption("test","secretkey")
# To print the encrypted text
print(test.encrypted)from enyo.enyodecryption import EnyoDecryption
# Third parameter is optional partition (by default 2)
test = EnyoDecryption("SaSQpN","secretkey")
# To print the decrypted text
print(test.decrypted)pip install enyogit clone https://github.com/apratimshukla6/enyo.git
cd enyo
pip install --editable .