Documentation: http://chrissimpkins.github.io/crypto/ Description ------------- crypto provides a simple interface to symmetric Gnu Privacy Guard (gpg) encryption and decryption for one or more files on Unix and Linux platforms. It runs on top of gpg and requires a gpg install on your system. Encryption is performed with the AES256 cipher algorithm. `Benchmarks relative to default gpg settings are available for text and binary file mime types `_. crypto provides a number of options including automated tar archives of multiple files prior to encryption, portable ASCII armored encryption formatting, and SHA256 hash digest generation for your encrypted files. You can view all available options in the `usage documentation `_ or with the ``--help`` option. Tested in cPython 2.7.x, 3.4.x, and pypy 2.4.x (Python version 2.7.9) Install --------- Install with ``pip`` using the command: .. code-block:: bash $ pip install crypto or `download the source repository `_, unpack it, and navigate to the top level of the repository. Then enter: .. code-block:: bash $ python setup.py install Upgrade ----------- You can upgrade your crypto version with the command: .. code-block:: bash $ pip install --upgrade crypto Usage --------- Encryption (crypto) ^^^^^^^^^^^^^^^^^^^^^ .. code-block:: bash $ crypto [file path] .. code-block:: bash $ crypto [directory path] Decryption (decrypto) ^^^^^^^^^^^^^^^^^^^^^^^ .. code-block:: bash $ decrypto [file path] .. code-block:: bash $ decrypto [directory path] You can find all available options in the `documentation `_ or by using one of the following commands: .. code-block:: bash $ crypto --help $ decrypto --help Frequently Asked Questions ------------------------------- `FAQ link `_ Issue Reporting ------------------- Issue reporting is available on the `GitHub repository `_ Changelog ------------ `Changelog link `_