cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
Find a file
2015-05-03 12:42:11 +01:00
.travis remove python 3.2 from every other place I could find 2015-04-18 20:26:03 -05:00
docs Verification script 2015-05-03 12:42:10 +01:00
src/cryptography updates based on review feedback 2015-05-02 22:31:47 -05:00
tests Support loading of SECP256K1 vectors 2015-05-03 12:42:11 +01:00
vectors Merge pull request #1885 from reaperhulk/iap-vectors 2015-05-02 09:10:42 -04:00
.coveragerc Use coverage parallel mode and coverage combine to fix paths 2014-11-13 08:17:36 -05:00
.gitignore Hide the eggs! 2014-12-18 11:16:00 -08:00
.travis.yml Adde back the Build Time Trends webhook to collect stats on how long our builds take 2015-05-02 09:26:27 -04:00
AUTHORS.rst Add @sbuss to AUTHORS 2015-04-15 16:49:03 -07:00
CHANGELOG.rst Drop support for Python 3.2 2015-04-18 20:24:30 -05:00
CONTRIBUTING.rst
dev-requirements.txt add pyasn1 as a dependency 2014-11-27 09:55:17 -10:00
LICENSE
LICENSE.APACHE
LICENSE.BSD
MANIFEST.in Moved OpenSSL engine into standalone c and h files 2015-03-23 18:33:53 -05:00
README.rst remove python 3.2 from every other place I could find 2015-04-18 20:26:03 -05:00
setup.py Support Subject Alternative Name in the OpenSSL backend 2015-04-20 22:12:32 -05:00
tasks.py increase delay waiting for wheel job to start 2014-12-24 08:07:56 -06:00
tox.ini remove python 3.2 from every other place I could find 2015-04-18 20:26:03 -05:00

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

.. image:: https://pypip.in/version/cryptography/badge.svg?style=flat
    :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://img.shields.io/coveralls/pyca/cryptography/master.svg
    :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.3+, 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