1.0.8
Major Changes
- Restructured entire decrypto library
- Decrypto now comes with the power of Atbash Cipher technique
to test atbash cipher, try this example
from decrypto import AtbashCipher
cipher = AtbashCipher()
data = 'hello world'
en = cipher.encrypt(data)
de = cipher.decrypt(en)
print(en, de)
thanks to @mhemanthkmr for his contribution to this release