diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-07 23:50:51 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-07 23:50:51 -0700 |
commit | 6c4570da8218f0f003c2a4839927f3baadfd95aa (patch) | |
tree | 2378320f060f73ec4d4560b99446fffb28577d36 /docs | |
parent | 3562d05f7b6084e6c4de5ba547d0f5e03a349e1b (diff) | |
parent | 5e7926f5afbb155168a000008c842f1228a2e203 (diff) | |
download | cryptography-6c4570da8218f0f003c2a4839927f3baadfd95aa.tar.gz cryptography-6c4570da8218f0f003c2a4839927f3baadfd95aa.tar.bz2 cryptography-6c4570da8218f0f003c2a4839927f3baadfd95aa.zip |
Merge pull request #21 from hynek/rename-c-to-bindings
Refactor into latest design decision
Diffstat (limited to 'docs')
-rw-r--r-- | docs/architecture.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/architecture.rst b/docs/architecture.rst index 7b394950..0a9550c0 100644 --- a/docs/architecture.rst +++ b/docs/architecture.rst @@ -8,11 +8,11 @@ Architecture ``cryptography`` has three different layers: -* ``cryptography.c``: This package contains bindings to low level cryptographic - libraries. Our initial target will be OpenSSL. +* ``cryptography.bindings``: 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``. This is implemented on top of - ``cryptography.c``. + ``cryptography.bindings``. * ``cryptography``: This package contains higher level recipes, for example "encrypt and then MAC". This is implemented on top of ``cryptography.primitives``. |