crypto


Namecrypto JSON
Version 1.4.1 PyPI version JSON
download
home_pagehttps://github.com/chrissimpkins/crypto
SummarySimple symmetric GPG file encryption and decryption
upload_time2015-05-14 00:41:44
maintainer
docs_urlNone
authorChristopher Simpkins
requires_pythonNone
licenseMIT license
keywords encryption decryption gpg pgp openpgp cipher aes256 crypto cryptography security privacy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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 <https://chrissimpkins.github.io/crypto/benchmarks.html>`_.

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 <http://chrissimpkins.github.io/crypto/usage.html>`_ or with the ``--help`` option.

Tested in cPython 2.7.x, 3.4.x, and pypy 2.6.x (Python version 2.7.9)


Install
---------

Install with ``pip`` using the command:

.. code-block:: bash

	$ pip install crypto

or `download the source repository <https://github.com/chrissimpkins/crypto/tarball/master>`_, 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 <options> [file path] <file path 2...>

.. code-block:: bash

	$ crypto <options> [directory path] <directory path 2...>


Decryption (decrypto)
^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: bash

	$ decrypto <options> [file path] <file path 2...>

.. code-block:: bash

	$ decrypto <options> [directory path] <directory path 2...>


You can find all available options in the `documentation <http://chrissimpkins.github.io/crypto/usage.html>`_ or by using one of the following commands:

.. code-block:: bash

	$ crypto --help
	$ decrypto --help


Frequently Asked Questions
-------------------------------

`FAQ link <http://chrissimpkins.github.io/crypto/faq.html>`_


Issue Reporting
-------------------

Issue reporting is available on the `GitHub repository <https://github.com/chrissimpkins/crypto/issues>`_


Changelog
------------

`Changelog link <http://chrissimpkins.github.io/crypto/changelog.html>`_
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/chrissimpkins/crypto",
    "name": "crypto",
    "maintainer": "",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "",
    "keywords": "encryption,decryption,gpg,pgp,openpgp,cipher,AES256,crypto,cryptography,security,privacy",
    "author": "Christopher Simpkins",
    "author_email": "git.simpkins@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/12/0d/34dce1487b3158a0ccd0e5982cba0259c798c24c0de4cc25ec265b37cd98/crypto-1.4.1.tar.gz",
    "platform": "any",
    "description": "Documentation: http://chrissimpkins.github.io/crypto/\r\n\r\nDescription\r\n-------------\r\n\r\ncrypto 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 <https://chrissimpkins.github.io/crypto/benchmarks.html>`_.\r\n\r\ncrypto 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 <http://chrissimpkins.github.io/crypto/usage.html>`_ or with the ``--help`` option.\r\n\r\nTested in cPython 2.7.x, 3.4.x, and pypy 2.6.x (Python version 2.7.9)\r\n\r\n\r\nInstall\r\n---------\r\n\r\nInstall with ``pip`` using the command:\r\n\r\n.. code-block:: bash\r\n\r\n\t$ pip install crypto\r\n\r\nor `download the source repository <https://github.com/chrissimpkins/crypto/tarball/master>`_, unpack it, and navigate to the top level of the repository.  Then enter:\r\n\r\n.. code-block:: bash\r\n\r\n\t$ python setup.py install\r\n\r\n\r\nUpgrade\r\n-----------\r\n\r\nYou can upgrade your crypto version with the command:\r\n\r\n.. code-block:: bash\r\n\r\n\t$ pip install --upgrade crypto\r\n\r\n\r\nUsage\r\n---------\r\n\r\nEncryption (crypto)\r\n^^^^^^^^^^^^^^^^^^^^^\r\n\r\n.. code-block:: bash\r\n\r\n\t$ crypto <options> [file path] <file path 2...>\r\n\r\n.. code-block:: bash\r\n\r\n\t$ crypto <options> [directory path] <directory path 2...>\r\n\r\n\r\nDecryption (decrypto)\r\n^^^^^^^^^^^^^^^^^^^^^^^\r\n\r\n.. code-block:: bash\r\n\r\n\t$ decrypto <options> [file path] <file path 2...>\r\n\r\n.. code-block:: bash\r\n\r\n\t$ decrypto <options> [directory path] <directory path 2...>\r\n\r\n\r\nYou can find all available options in the `documentation <http://chrissimpkins.github.io/crypto/usage.html>`_ or by using one of the following commands:\r\n\r\n.. code-block:: bash\r\n\r\n\t$ crypto --help\r\n\t$ decrypto --help\r\n\r\n\r\nFrequently Asked Questions\r\n-------------------------------\r\n\r\n`FAQ link <http://chrissimpkins.github.io/crypto/faq.html>`_\r\n\r\n\r\nIssue Reporting\r\n-------------------\r\n\r\nIssue reporting is available on the `GitHub repository <https://github.com/chrissimpkins/crypto/issues>`_\r\n\r\n\r\nChangelog\r\n------------\r\n\r\n`Changelog link <http://chrissimpkins.github.io/crypto/changelog.html>`_",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "Simple symmetric GPG file encryption and decryption",
    "version": "1.4.1",
    "split_keywords": [
        "encryption",
        "decryption",
        "gpg",
        "pgp",
        "openpgp",
        "cipher",
        "aes256",
        "crypto",
        "cryptography",
        "security",
        "privacy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "39e5154b6b1fc3811ed359628f0f2def",
                "sha256": "985120aa86f71545388199f96a2a0e00f7ccfe5ecd14c56355eb399e1a63d164"
            },
            "downloads": -1,
            "filename": "crypto-1.4.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "39e5154b6b1fc3811ed359628f0f2def",
            "packagetype": "bdist_wheel",
            "python_version": "2.7",
            "requires_python": null,
            "size": 18019,
            "upload_time": "2015-05-14T00:41:50",
            "upload_time_iso_8601": "2015-05-14T00:41:50.011865Z",
            "url": "https://files.pythonhosted.org/packages/fc/bb/0b812dc02e6357606228edfbf5808f5ca0a675a84273578c3a199e841cd8/crypto-1.4.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f0a5fc0e6797dadd34fb7cbdb4cf5ff1",
                "sha256": "8f2ee9756a0265c18845ac097ae447c75cfbde158abe1361b7491619f866a9bd"
            },
            "downloads": -1,
            "filename": "crypto-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f0a5fc0e6797dadd34fb7cbdb4cf5ff1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 13278,
            "upload_time": "2015-05-14T00:41:44",
            "upload_time_iso_8601": "2015-05-14T00:41:44.952811Z",
            "url": "https://files.pythonhosted.org/packages/12/0d/34dce1487b3158a0ccd0e5982cba0259c798c24c0de4cc25ec265b37cd98/crypto-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2015-05-14 00:41:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "chrissimpkins",
    "github_project": "crypto",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "crypto"
}
        
Elapsed time: 0.02294s