diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/architecture.rst | 10 | ||||
-rw-r--r-- | docs/hazmat/bindings/index.rst (renamed from docs/bindings/index.rst) | 0 | ||||
-rw-r--r-- | docs/hazmat/bindings/openssl.rst (renamed from docs/bindings/openssl.rst) | 2 | ||||
-rw-r--r-- | docs/index.rst | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/docs/architecture.rst b/docs/architecture.rst index 8de8649d..4cf639c2 100644 --- a/docs/architecture.rst +++ b/docs/architecture.rst @@ -8,11 +8,11 @@ Architecture ``cryptography`` has three different layers: -* ``cryptography.bindings``: This package contains bindings to low level - cryptographic libraries. Our initial target will be OpenSSL. -* ``cryptography.hazmat.primitives``: This packages contains low level - algorithms, things like ``AES`` or ``SHA1``. This is implemented on top of - ``cryptography.bindings``. * ``cryptography``: This package contains higher level recipes, for example "encrypt and then MAC". This is implemented on top of ``cryptography.hazmat.primitives``. +* ``cryptography.hazmat.primitives``: This packages contains low level + algorithms, things like ``AES`` or ``SHA1``. This is implemented on top of + ``cryptography.hazmat.bindings``. +* ``cryptography.hazmat.bindings``: This package contains bindings to low level + cryptographic libraries. Our initial target will be OpenSSL. diff --git a/docs/bindings/index.rst b/docs/hazmat/bindings/index.rst index 80f53594..80f53594 100644 --- a/docs/bindings/index.rst +++ b/docs/hazmat/bindings/index.rst diff --git a/docs/bindings/openssl.rst b/docs/hazmat/bindings/openssl.rst index e59b0c13..5a00395e 100644 --- a/docs/bindings/openssl.rst +++ b/docs/hazmat/bindings/openssl.rst @@ -10,7 +10,7 @@ OpenSSL These are `CFFI`_ bindings to the `OpenSSL`_ C library. -.. data:: cryptography.bindings.openssl.backend +.. data:: cryptography.hazmat.bindings.openssl.backend This is the exposed API for the OpenSSL bindings. It has two public attributes: diff --git a/docs/index.rst b/docs/index.rst index 47418abb..b2420a8f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -31,7 +31,6 @@ Contents :maxdepth: 2 architecture - bindings/index contributing security community @@ -43,3 +42,4 @@ Hazard Materials :maxdepth: 2 hazmat/primitives/index + hazmat/bindings/index |