Skip to content

1.0.8

Compare
Choose a tag to compare
@pyGuru123 pyGuru123 released this 14 Oct 11:13
· 22 commits to main since this release

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