1.0.6
Major Changes
Decrypto now comes with the power of following encryption techniques
- Base64Cipher
- BaconCipher
- ROT13Cipher
to test any of these, try this example
cipher = ROT13Cipher()
data = 'Hello world'
encrypted = cipher.encrypt(data)
print(encrypted)
decrypted = cipher.decrypt(encrypted)
print(decrypted)thanks to @murugan-k-0204 & @mhemanthkmr for their contribution to this release