Skip to content

1.0.6

Choose a tag to compare

@itspyguru itspyguru released this 13 Oct 15:41
· 36 commits to main since this release

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