cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
Find a file
2014-10-08 15:09:36 -07:00
.travis Remove (apparently) unneeded line 2014-09-26 10:05:48 -04:00
cryptography update comment with info re: 0.9.8 2014-10-03 16:04:13 -05:00
docs remove deprecated DSA classes/methods and update tests 2014-09-30 10:06:57 -05:00
tests Merge pull request #1381 from alex/stop-generating-keys 2014-10-01 16:03:47 -05:00
vectors Remove the EC PARAMETERS section from the PEM 2014-10-08 15:09:36 -07:00
.coveragerc Move coverage configuration to the config file 2014-07-28 22:26:51 -07:00
.gitignore update gitignore to ignore the new so name structure 2014-03-24 07:13:52 -04:00
.travis.yml Move to being a part of the pep8 job 2014-05-17 22:34:56 -07:00
AUTHORS.rst Added to AUTHORS.rst 2014-09-12 17:33:42 +01:00
CHANGELOG.rst open master for seventh release development 2014-09-29 21:43:57 -05:00
CONTRIBUTING.rst link the CONTRIBUTING.rst to the development section of our docs 2014-03-02 09:23:46 -04:00
dev-requirements.txt use pyasn1 for creating the dss-sig-value structure 2014-04-30 11:13:17 -05:00
LICENSE Initial commit. Migrates over basic project files, and the OpenSSL bindings 2013-08-06 19:31:02 -07:00
MANIFEST.in Simplify, thanks @dstufft 2014-08-11 13:19:58 -07:00
pytest.ini fixes 2014-09-08 12:43:02 -07:00
README.rst add readthedocs badge 2014-09-27 11:41:32 -05:00
setup.py Fix PEP-8 violations 2014-09-29 11:44:32 -05:00
tasks.py Added an explanatory comment. 2014-09-28 12:00:49 -04:00
tox.ini re-add line I accidentally removed by hitting dd one too many times 2014-09-29 15:20:43 -05:00

Cryptography
============

.. image:: https://pypip.in/version/cryptography/badge.svg
    :target: https://pypi.python.org/pypi/cryptography/
    :alt: Latest Version

.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest
    :target: https://cryptography.io
    :alt: Latest Docs

.. image:: https://travis-ci.org/pyca/cryptography.svg?branch=master
    :target: https://travis-ci.org/pyca/cryptography

.. image:: https://coveralls.io/repos/pyca/cryptography/badge.png?branch=master
    :target: https://coveralls.io/r/pyca/cryptography?branch=master


``cryptography`` is a package which provides cryptographic recipes and
primitives to Python developers.  Our goal is for it to be your "cryptographic
standard library". It supports Python 2.6-2.7, Python 3.2+, and PyPy.

``cryptography`` includes both high level recipes, and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message digests and
key derivation functions. For example, to encrypt something with
``cryptography``'s high level symmetric encryption recipe:

.. code-block:: pycon

    >>> from cryptography.fernet import Fernet
    >>> # Put this somewhere safe!
    >>> key = Fernet.generate_key()
    >>> f = Fernet(key)
    >>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
    >>> token
    '...'
    >>> f.decrypt(token)
    'A really secret message. Not for prying eyes.'

You can find more information in the `documentation`_.

Discussion
~~~~~~~~~~

If you run into bugs, you can file them in our `issue tracker`_.

We maintain a `cryptography-dev`_ mailing list for development discussion.

You can also join ``#cryptography-dev`` on Freenode to ask questions or get
involved.


.. _`documentation`: https://cryptography.io/
.. _`issue tracker`: https://github.com/pyca/cryptography/issues
.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev