To encrypt and decrypt message.
Only morse encryption/decryption is supported.
pip install -U sipher
usage: sipher [options]
optional arguments:
-h, --help show this help message and exit
-v, --version show version number and exit.
to encrypt/decrypt message:
data data to encrypt/decrypt
-e, --encrypt to encrypt message
-d, --decrypt to decrypt message
-c, --copy to copy encrypted/decrypted message to clipboard (default :
False)
-s, --store to store encrypted/decrypted message as text file (default :
False)
-p, --path path to store encrypted/decrypted message
To encrypt a text and copy it to clipboard.
$ sipher data --encrypt --copy
Encrypted message copied to clipboard.
To decrypt a cipher and store it as text file.
$ sipher "-.. .- - .- " --decrypt --store
Encrypted message stored in 'path_given/default_path'.
If you encounter any problems, please file an issue along with a detailed description.