ciphers.vigenere_cipher¶
Attributes¶
Functions¶
|
|
|
|
|
|
|
Module Contents¶
- ciphers.vigenere_cipher.decrypt_message(key: str, message: str) str ¶
>>> decrypt_message('HDarji', 'Akij ra Odrjqqs Gaisq muod Mphumrs.') 'This is Harshil Darji from Dharmaj.'
- ciphers.vigenere_cipher.encrypt_message(key: str, message: str) str ¶
>>> encrypt_message('HDarji', 'This is Harshil Darji from Dharmaj.') 'Akij ra Odrjqqs Gaisq muod Mphumrs.'
- ciphers.vigenere_cipher.main() None ¶
- ciphers.vigenere_cipher.translate_message(key: str, message: str, mode: str) str ¶
- ciphers.vigenere_cipher.LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'¶