ciphers.transposition_cipher

Functions

decrypt_message(→ str)

encrypt_message(→ str)

main(→ None)

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