Skip to content

1.1.1

Latest
Compare
Choose a tag to compare
@pyGuru123 pyGuru123 released this 07 Jan 11:47
· 4 commits to main since this release

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.