1.0.5
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