Major Changes
Decrypto now comes with the power of Scytale Cipher. Examplary Use of this cipher technique
from decrypto import ScytaleCipher
cipher = ScytaleCipher()
data = 'hello world'
key = 3
encrypted = cipher.encrypt(message, key)
decrypted = cipher.decrypt(encrypted, key)
print(encrypted)
print(decrypted)
We are working on adding more cipher techniques in upcoming releases.