blob: edff64bdc53f74cae88ebee9b10150469343392e [file] [log] [blame]
Alex Stapletonc5fffd32014-03-18 15:29:00 +00001Frequently asked questions
Alex Gaynorde06b292014-02-18 16:40:09 -08002==========================
3
Alex Gaynor59a6bc62014-02-18 18:13:48 -08004How does ``cryptography`` compare to NaCl (Networking and Cryptography Library)?
Alex Gaynorde06b292014-02-18 16:40:09 -08005--------------------------------------------------------------------------------
6
7While ``cryptography`` and `NaCl`_ both share the goal of making cryptography
8easier, and safer, to use for developers, ``cryptography`` is designed to be a
Alex Gaynorc37adab2014-02-18 16:46:58 -08009general purpose library, interoperable with existing systems, while NaCl
10features a collection of hand selected algorithms.
Alex Gaynorde06b292014-02-18 16:40:09 -080011
Alex Gaynor5809d482014-02-19 13:33:18 -080012``cryptography``'s :ref:`recipes <cryptography-layout>` layer has similar goals
13to NaCl.
Alex Gaynorde06b292014-02-18 16:40:09 -080014
15If you prefer NaCl's design, we highly recommend `PyNaCl`_.
16
Paul Kehrerf916dfc2017-05-27 14:24:28 -050017Why use ``cryptography``?
18-------------------------
19
20If you've done cryptographic work in Python before you have likely encountered
21other libraries in Python such as *M2Crypto*, *PyCrypto*, or *PyOpenSSL*. In
22building ``cryptography`` we wanted to address a few issues we observed in the
23legacy libraries:
24
25* Extremely error prone APIs and insecure defaults.
26* Use of poor implementations of algorithms (i.e. ones with known side-channel
27 attacks).
28* Lack of maintenance.
29* Lack of high level APIs.
30* Lack of PyPy and Python 3 support.
Paul Kehrerf916dfc2017-05-27 14:24:28 -050031* Absence of algorithms such as
32 :class:`AES-GCM <cryptography.hazmat.primitives.ciphers.modes.GCM>` and
33 :class:`~cryptography.hazmat.primitives.kdf.hkdf.HKDF`.
34
Alex Gaynor06049442017-03-15 12:21:45 -040035Compiling ``cryptography`` on macOS produces a ``fatal error: 'openssl/aes.h' file not found`` error
36----------------------------------------------------------------------------------------------------
Alex Gaynorc77db592016-03-09 07:12:06 -050037
Alex Gaynor06049442017-03-15 12:21:45 -040038This happens because macOS 10.11 no longer includes a copy of OpenSSL.
Alex Gaynorc77db592016-03-09 07:12:06 -050039``cryptography`` now provides wheels which include a statically linked copy of
40OpenSSL. You're seeing this error because your copy of pip is too old to find
41our wheel files. Upgrade your copy of pip with ``pip install -U pip`` and then
42try install ``cryptography`` again.
Alex Gaynor0fa997b2016-03-09 07:13:04 -050043
Alex Gaynore660ffe2017-04-09 09:19:02 -040044If you are using PyPy, we do not currently ship ``cryptography`` wheels for
45PyPy. You will need to install your own copy of OpenSSL -- we recommend using
46Homebrew.
47
Paul Kehrerfcf6fca2016-03-12 16:21:24 -040048Starting ``cryptography`` using ``mod_wsgi`` produces an ``InternalError`` during a call in ``_register_osrandom_engine``
49-------------------------------------------------------------------------------------------------------------------------
50
Paul Kehrer66a23722017-01-18 13:42:09 +080051Upgrade to the latest ``cryptography`` and this issue should be resolved.
Paul Kehrerfcf6fca2016-03-12 16:21:24 -040052
53``cryptography`` raised an ``InternalError`` and I'm not sure what to do?
54-------------------------------------------------------------------------
55
56Frequently ``InternalError`` is raised when there are errors on the OpenSSL
57error stack that were placed there by other libraries that are also using
58OpenSSL. Try removing the other libraries and see if the problem persists.
Paul Kehrer4e9bd8c2016-03-12 16:33:39 -040059If you have no other libraries using OpenSSL in your process, or they do not
60appear to be at fault, it's possible that this is a bug in ``cryptography``.
61Please file an `issue`_ with instructions on how to reproduce it.
Paul Kehrerfcf6fca2016-03-12 16:21:24 -040062
Paul Kehrerbd7cd2d2017-02-13 20:01:06 -060063Installing ``cryptography`` fails with ``ImportError: No module named setuptools_ext``
64--------------------------------------------------------------------------------------
65
66Your ``cffi`` package is out of date. ``pip install -U cffi`` to update it.
67
Alex Gaynor0e8cdf12016-12-13 21:05:35 -050068Installing cryptography with OpenSSL 0.9.8 or 1.0.0 fails
69---------------------------------------------------------
Alex Gaynor29b2ebc2016-11-22 09:25:17 -050070
Alex Gaynor0e8cdf12016-12-13 21:05:35 -050071The OpenSSL project has dropped support for the 0.9.8 and 1.0.0 release series.
72Since they are no longer receiving security patches from upstream,
73``cryptography`` is also dropping support for them. To fix this issue you
74should upgrade to a newer version of OpenSSL (1.0.1 or later). This may require
75you to upgrade to a newer operating system.
Alex Gaynor5d382062016-03-19 12:02:14 -040076
Alex Gaynor0fa997b2016-03-09 07:13:04 -050077.. _`NaCl`: https://nacl.cr.yp.to/
Alex Gaynor988df9b2016-04-28 10:57:16 -040078.. _`PyNaCl`: https://pynacl.readthedocs.io
79.. _`WSGIApplicationGroup`: https://modwsgi.readthedocs.io/en/develop/configuration-directives/WSGIApplicationGroup.html
Paul Kehrer4e9bd8c2016-03-12 16:33:39 -040080.. _`issue`: https://github.com/pyca/cryptography/issues