ciphers.transposition_cipher¶
Functions¶
|
|
|
|
|
Module Contents¶
- ciphers.transposition_cipher.decrypt_message(key: int, message: str) str ¶
>>> decrypt_message(6, 'Hlia rDsahrij') 'Harshil Darji'
- ciphers.transposition_cipher.encrypt_message(key: int, message: str) str ¶
>>> encrypt_message(6, 'Harshil Darji') 'Hlia rDsahrij'
- ciphers.transposition_cipher.main() None ¶