diff options
| author | Donald Stufft <donald@stufft.io> | 2013-10-27 16:44:30 -0400 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2013-10-28 08:37:33 -0400 |
| commit | f04317ae24441082279ea73ccca0a6630c33cc86 (patch) | |
| tree | b466055f23bd0ac01776202c0cde70bf7128e863 /tests/bindings | |
| parent | 01fbdf74967f8e22e3ea2d15f195898c64d34cc3 (diff) | |
| download | cryptography-f04317ae24441082279ea73ccca0a6630c33cc86.tar.gz cryptography-f04317ae24441082279ea73ccca0a6630c33cc86.tar.bz2 cryptography-f04317ae24441082279ea73ccca0a6630c33cc86.zip | |
Move primtives into a hazmat package
Diffstat (limited to 'tests/bindings')
| -rw-r--r-- | tests/bindings/test_openssl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bindings/test_openssl.py b/tests/bindings/test_openssl.py index 6f9c9d25..69ab38d0 100644 --- a/tests/bindings/test_openssl.py +++ b/tests/bindings/test_openssl.py @@ -14,8 +14,8 @@ import pytest from cryptography.bindings.openssl.backend import backend -from cryptography.primitives.block.ciphers import AES -from cryptography.primitives.block.modes import CBC +from cryptography.hazmat.primitives.block.ciphers import AES +from cryptography.hazmat.primitives.block.modes import CBC class TestOpenSSL(object): |
