aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/bindings/openssl/backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'cryptography/bindings/openssl/backend.py')
-rw-r--r--cryptography/bindings/openssl/backend.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/cryptography/bindings/openssl/backend.py b/cryptography/bindings/openssl/backend.py
index 4ec16189..3477d3ee 100644
--- a/cryptography/bindings/openssl/backend.py
+++ b/cryptography/bindings/openssl/backend.py
@@ -18,9 +18,11 @@ import sys
import cffi
-from cryptography.primitives import interfaces
-from cryptography.primitives.block.ciphers import AES, Camellia, TripleDES
-from cryptography.primitives.block.modes import CBC, CTR, ECB, OFB, CFB
+from cryptography.hazmat.primitives import interfaces
+from cryptography.hazmat.primitives.block.ciphers import (
+ AES, Camellia, TripleDES,
+)
+from cryptography.hazmat.primitives.block.modes import CBC, CTR, ECB, OFB, CFB
class Backend(object):