CipherMe
1.0.0
本文包含的加密算法是:
pip install ciphermeAffineCipher 。 (ii)。 CaesarCipher密码。对于仿射密码: AffineCipher().encrypt_text(plain_text=None, a=None, b=None) AffineCipher().decrypt_text(plain_text=None, a=None, b=None)
对于Caesar cipher: CaesarCipher().caesar_encryption(plaintext=None, k=None) CaesarCipher().caesar_decryption(self, ciphertext=None, k=None)