CipherMe
1.0.0
The Encryption Algorithms contained herein are:
pip install ciphermeAffineCipher for the Affine Cipher.
(ii). CaesarCipher for the Caesar Cipher.For Affine cipher:
AffineCipher().encrypt_text(plain_text=None, a=None, b=None)
AffineCipher().decrypt_text(plain_text=None, a=None, b=None)
For Caesar Cipher:
CaesarCipher().caesar_encryption(plaintext=None, k=None)
CaesarCipher().caesar_decryption(self, ciphertext=None, k=None)