Alex Gaynor | 450bb4c | 2014-02-03 15:42:04 -0800 | [diff] [blame^] | 1 | .. hazmat:: |
2 | |||||
3 | MultiBackend | ||||
4 | ============ | ||||
5 | |||||
6 | .. currentmodule:: cryptography.hazmat.backends.multibackend | ||||
7 | |||||
8 | .. class:: MultiBackend(backends) | ||||
9 | |||||
10 | This class allows you to combine multiple backends into a single backend | ||||
11 | which offers the combined features of all of its constituents. | ||||
12 | |||||
13 | :param backends: A ``list`` of backend objects. Backends are checked for | ||||
14 | feature support in the other they exist in this list. |