cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.
Find a file
Alex Stapleton 083091eaef Merge pull request #1454 from alex/not-your-interface
Don't mark this test class as implementing the interface.
2014-10-30 20:26:41 +00:00
.travis Possible logic error. 2014-10-30 10:37:32 +08:00
cryptography Removed argument names per review 2014-10-28 17:33:27 +11:00
docs Fixed a few typos 2014-10-22 14:15:43 -07:00
tests Don't mark this test class as implementing the interface. 2014-10-30 10:51:59 -07: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 Add gpg key fingerprint for skeuomorf 2014-10-15 09:22:38 +02:00
CHANGELOG.rst added docs stuff on when added 2014-10-20 21:27:08 -07: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 Change how we represented that a test requires a backend. 2014-10-23 11:01:25 -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