cryptum is a simple python encryption library that can generate rsa public/private keys and encrypt data for easy transport between applications and languages.
Example Install with Pip
pip install cryptum
cryptcli.py --help
Usage: cryptcli.py [OPTIONS]
Options:
-e, --encrypt Encrypt input file.
-f, --input_file FILENAME The Input File.
-k, --input_key FILENAME The Public/Private Key to use.
-d, --decrypt Decrypt input file.
-o, --output TEXT Output file.
-g, --generate Generate Encryption Keys.
--version
--help Show this message and exit.
cryptcli.py -g
cryptcli.py -e -f test.txt -k pub.txt
cryptcli.py -d -f test.txt.enc -k priv.txt