diff options
-rw-r--r-- | docs/architecture.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/architecture.rst b/docs/architecture.rst index 80e2c28a..7b394950 100644 --- a/docs/architecture.rst +++ b/docs/architecture.rst @@ -11,6 +11,8 @@ Architecture * ``cryptography.c``: This package contains bindings to low level cryptographic libraries. Our initial target will be OpenSSL. * ``cryptography.primitives``: This packages contains low level algorithms, - things like ``AES`` or ``SHA1``. + things like ``AES`` or ``SHA1``. This is implemented on top of + ``cryptography.c``. * ``cryptography``: This package contains higher level recipes, for example - "encrypt and then MAC". + "encrypt and then MAC". This is implemented on top of + ``cryptography.primitives``. |