diff options
author | Donald Stufft <donald@stufft.io> | 2013-08-11 17:38:13 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-08-11 17:38:13 -0400 |
commit | 446a457218e3f793f4fec6b73e719c37bfef7d6e (patch) | |
tree | ff8636929592945493350a70bea0c3df1e3f0f8a /docs/index.rst | |
parent | b19736c8ffdb2bfe243097cae55b60d855e7a0fe (diff) | |
parent | 09f53578923c241fbb76c0be6bdf725f3b96f528 (diff) | |
download | cryptography-446a457218e3f793f4fec6b73e719c37bfef7d6e.tar.gz cryptography-446a457218e3f793f4fec6b73e719c37bfef7d6e.tar.bz2 cryptography-446a457218e3f793f4fec6b73e719c37bfef7d6e.zip |
Merge branch 'master' into simple-symmetric-encryption
Conflicts:
setup.py
Diffstat (limited to 'docs/index.rst')
-rw-r--r-- | docs/index.rst | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst index 1d8ffda6..29f0b545 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -8,7 +8,24 @@ Welcome to ``cryptography`` ``cryptography`` is a Python library which exposes cryptographic primitives and recipes. -Contents: +Why a new crypto library for Python? +------------------------------------ + +We wanted to address a few issues with existing cryptography libraries in +Python: + +* Lack of PyPy support. +* Lack of maintenance. +* Use of poor implementations of algorithms (i.e. ones with known side-channel + attacks). +* Lack of high level, "Cryptography for humans", APIs. +* Absence of algorithms such as AES-GCM. +* Poor introspectability, and thus poor testability. +* Extremely error prone APIs, and bad defaults. + + +Contents +-------- .. toctree:: :maxdepth: 2 |