CipherMe
1.0.0
Les algorithmes de chiffrement contenus ici sont:
pip install ciphermeAffineCipher pour le chiffre affine. (ii). CaesarCipher pour le chiffre de César. Pour Affine Cipher: AffineCipher().encrypt_text(plain_text=None, a=None, b=None) AffineCipher().decrypt_text(plain_text=None, a=None, b=None)
Pour Caesar Cipher: CaesarCipher().caesar_encryption(plaintext=None, k=None) CaesarCipher().caesar_decryption(self, ciphertext=None, k=None)