ciphers.transposition_cipher ============================ .. py:module:: ciphers.transposition_cipher Functions --------- .. autoapisummary:: ciphers.transposition_cipher.decrypt_message ciphers.transposition_cipher.encrypt_message ciphers.transposition_cipher.main Module Contents --------------- .. py:function:: decrypt_message(key: int, message: str) -> str >>> decrypt_message(6, 'Hlia rDsahrij') 'Harshil Darji' .. py:function:: encrypt_message(key: int, message: str) -> str >>> encrypt_message(6, 'Harshil Darji') 'Hlia rDsahrij' .. py:function:: main() -> None