Major Changes
Decrypto now comes with the power of following encryption techniques
* Affine Cipher
to test affine cipher, try this example
python
from decrypto import AffineCipher
cipher = AffineCipher()
data = 'hello world'
a, b = 17, 20
en = cipher.encrypt(data, a, b)
de = cipher.decrypt(en, a, b)
print(en, de)
thanks to anonymous-sidhax for his contribution to this release