Encrypt.caesar_decipher

securefile.Encrypt.caesar_decipher()

Decrypt a cipher text into plain text.

See caesar_cipher

Example:

...
enc.caesar_decipher(key_shift=3, commit=True)
...
Parameters:
  • key_shift=3 (int) – Position shift in cipher text.
  • commit=False (bool) – Save the change or not.
Returns:

Decrypted Message or Plain Text.

Raises:

None