aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/bindings/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cryptography/bindings/__init__.py')
-rw-r--r--cryptography/bindings/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/cryptography/bindings/__init__.py b/cryptography/bindings/__init__.py
index 8b165009..215f17c7 100644
--- a/cryptography/bindings/__init__.py
+++ b/cryptography/bindings/__init__.py
@@ -11,7 +11,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from cryptography.bindings.openssl import api
+from cryptography.bindings import openssl
-_default_api = api
+_default_api = openssl.api
+_ALL_APIS = [
+ openssl.api
+]