diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-05-27 14:24:28 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-27 15:24:28 -0400 |
commit | f916dfcdbca80ca8f43c554c404190f04b526029 (patch) | |
tree | cfb6fd1dfda2c725c61467279dd6204fdd795413 | |
parent | 2f29224beb96b6f55d2e0a12b7d6b86f8b57f377 (diff) | |
download | cryptography-f916dfcdbca80ca8f43c554c404190f04b526029.tar.gz cryptography-f916dfcdbca80ca8f43c554c404190f04b526029.tar.bz2 cryptography-f916dfcdbca80ca8f43c554c404190f04b526029.zip |
re-add the why of cryptography to the faq with some small updates (#3621)
* re-add the why of cryptography to the faq with some small updates
* reorder the items a bit
-rw-r--r-- | docs/faq.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/faq.rst b/docs/faq.rst index 9706faa7..bc6fc255 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -14,6 +14,25 @@ to NaCl. If you prefer NaCl's design, we highly recommend `PyNaCl`_. +Why use ``cryptography``? +------------------------- + +If you've done cryptographic work in Python before you have likely encountered +other libraries in Python such as *M2Crypto*, *PyCrypto*, or *PyOpenSSL*. In +building ``cryptography`` we wanted to address a few issues we observed in the +legacy libraries: + +* Extremely error prone APIs and insecure defaults. +* Use of poor implementations of algorithms (i.e. ones with known side-channel + attacks). +* Lack of maintenance. +* Lack of high level APIs. +* Lack of PyPy and Python 3 support. +* Poor introspectability and thus poor testability. +* Absence of algorithms such as + :class:`AES-GCM <cryptography.hazmat.primitives.ciphers.modes.GCM>` and + :class:`~cryptography.hazmat.primitives.kdf.hkdf.HKDF`. + Compiling ``cryptography`` on macOS produces a ``fatal error: 'openssl/aes.h' file not found`` error ---------------------------------------------------------------------------------------------------- |