aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends/multibackend.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-03 15:42:04 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-03 15:42:04 -0800
commit450bb4c6609d246ded86959de3d925df81afdba9 (patch)
tree458d4cd404178dbf994fb107c35b1d29f8fa1146 /docs/hazmat/backends/multibackend.rst
parenta45a770f88ad4444c80e52966f5022c4fb287ce5 (diff)
downloadcryptography-450bb4c6609d246ded86959de3d925df81afdba9.tar.gz
cryptography-450bb4c6609d246ded86959de3d925df81afdba9.tar.bz2
cryptography-450bb4c6609d246ded86959de3d925df81afdba9.zip
Rename and document
Diffstat (limited to 'docs/hazmat/backends/multibackend.rst')
-rw-r--r--docs/hazmat/backends/multibackend.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/hazmat/backends/multibackend.rst b/docs/hazmat/backends/multibackend.rst
new file mode 100644
index 00000000..23e6d48f
--- /dev/null
+++ b/docs/hazmat/backends/multibackend.rst
@@ -0,0 +1,14 @@
+.. hazmat::
+
+MultiBackend
+============
+
+.. currentmodule:: cryptography.hazmat.backends.multibackend
+
+.. class:: MultiBackend(backends)
+
+ This class allows you to combine multiple backends into a single backend
+ which offers the combined features of all of its constituents.
+
+ :param backends: A ``list`` of backend objects. Backends are checked for
+ feature support in the other they exist in this list.