Skip to content

1.0.5

Compare
Choose a tag to compare
@pyGuru123 pyGuru123 released this 12 Oct 18:53
· 45 commits to main since this release

Major Changes

  • decrypto now comes with the power of viginere cipher. To use it, try this
from decrypto import VigenereCipher

cipher = VigenereCipher()
data = 'Hello world'
key = 'cryptii'

encrypted = cipher.encrypt(data, key)
print(encrypted)

decrypted = cipher.decrypt(encrypted, key)
print(decrypted)

thanks to @murugan-k-0204 for their contribution to this release