Alex Gaynor | 8d7fb75 | 2013-08-06 19:30:47 -0700 | [diff] [blame] | 1 | Cryptography |
| 2 | ============ |
| 3 | |
Hynek Schlawack | f30db51 | 2013-08-07 20:50:05 +0200 | [diff] [blame] | 4 | .. image:: https://travis-ci.org/alex/cryptography.png?branch=master |
| 5 | :target: https://travis-ci.org/alex/cryptography |
| 6 | |
Alex Gaynor | c0f2855 | 2013-08-07 13:56:11 -0700 | [diff] [blame] | 7 | .. image:: https://coveralls.io/repos/alex/cryptography/badge.png?branch=master |
| 8 | :target: https://coveralls.io/r/alex/cryptography?branch=master |
| 9 | |
Alex Gaynor | 8d7fb75 | 2013-08-06 19:30:47 -0700 | [diff] [blame] | 10 | ``cryptography`` is a package designed to expose cryptographic primitives and |
| 11 | recipes to Python developers. |
Alex Gaynor | 7a6b5cb | 2013-08-07 09:56:34 -0700 | [diff] [blame] | 12 | |
| 13 | It is currently in early development and isn't recommended for general usage |
| 14 | yet. It targets Python 2.6-2.7, Python 3.2+, as well as PyPy. |
| 15 | |
Alex Gaynor | 711b014 | 2013-08-11 08:24:12 -0400 | [diff] [blame^] | 16 | You can more documentation at `Read The Docs`_. |
| 17 | |
| 18 | .. _`Read The Docs`: https://cryptography.readthedocs.org/ |
| 19 | |
| 20 | |
Alex Gaynor | 7a6b5cb | 2013-08-07 09:56:34 -0700 | [diff] [blame] | 21 | Why a new crypto library for Python? |
| 22 | ------------------------------------ |
| 23 | |
| 24 | None of the existing ones work on PyPy, and many of them are unmaintained or |
| 25 | are based around very poor implementations of algorithms (i.e ones with known |
| 26 | side-channel attacks). |
Alex Gaynor | 711b014 | 2013-08-11 08:24:12 -0400 | [diff] [blame^] | 27 | |