CipherMe
1.0.0
خوارزميات التشفير الواردة هنا هي:
pip install ciphermeAffineCipher للتشفير Affine. (2). CaesarCipher للتشفير القيصر. بالنسبة لـ Affine Cipher: 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)