aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends/index.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-15 23:09:13 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-15 23:09:13 -0800
commit5175e4e6394ade40e38dc00b8e1e14a2877aafe4 (patch)
treece9073684c790f908044f939e92312ad82112514 /docs/hazmat/backends/index.rst
parent973499aded3ce3580a8c6d44aa111288240f90a1 (diff)
parentffb7726fa3042e66e8011fbd17a8b6f83f0c8110 (diff)
downloadcryptography-5175e4e6394ade40e38dc00b8e1e14a2877aafe4.tar.gz
cryptography-5175e4e6394ade40e38dc00b8e1e14a2877aafe4.tar.bz2
cryptography-5175e4e6394ade40e38dc00b8e1e14a2877aafe4.zip
Merge branch 'master' into validate-iv
Conflicts: cryptography/hazmat/primitives/ciphers/modes.py tests/hazmat/primitives/test_block.py
Diffstat (limited to 'docs/hazmat/backends/index.rst')
-rw-r--r--docs/hazmat/backends/index.rst34
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`.
+