Major Changes
* decrypto now comes with the power of viginere cipher. To use it, try this
python
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