diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-15 22:17:59 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-15 22:17:59 -0800 |
commit | 4a35b7fede2d8e544abfbe9b1ea0d11231da9908 (patch) | |
tree | 01ef45be7d510501965717ad4a39fd9c54a19053 /docs/hazmat/backends/index.rst | |
parent | c3f7c37f5718b5deb08edb41125d8c7fb3733cfc (diff) | |
parent | ffb7726fa3042e66e8011fbd17a8b6f83f0c8110 (diff) | |
download | cryptography-4a35b7fede2d8e544abfbe9b1ea0d11231da9908.tar.gz cryptography-4a35b7fede2d8e544abfbe9b1ea0d11231da9908.tar.bz2 cryptography-4a35b7fede2d8e544abfbe9b1ea0d11231da9908.zip |
Merge branch 'master' into fernet
Diffstat (limited to 'docs/hazmat/backends/index.rst')
-rw-r--r-- | docs/hazmat/backends/index.rst | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/hazmat/backends/index.rst b/docs/hazmat/backends/index.rst new file mode 100644 index 00000000..a89cf0d5 --- /dev/null +++ b/docs/hazmat/backends/index.rst @@ -0,0 +1,34 @@ +.. hazmat:: + +Bindings +======== + +.. toctree:: + :maxdepth: 1 + + openssl + interfaces + + +Getting a Backend Provider +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. currentmodule:: cryptography.hazmat.backends + +``cryptography`` aims to support multiple backends to ensure it can provide +the widest number of supported cryptographic algorithms as well as supporting +platform specific implementations. + +You can get the default backend by calling +:func:`~default_backend`. + +The default backend will change over time as we implement new backends and +the libraries we use in those backends changes. + + +.. function:: default_backend() + + :returns: An object that provides at least + :class:`~interfaces.CipherBackend`, :class:`~interfaces.HashBackend`, and + :class:`~interfaces.HMACBackend`. + |