aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-15 12:31:48 -0430
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-15 12:31:48 -0430
commit66197c4e26176c3c6c87441617800f5988804699 (patch)
tree317208d44155fec3bac8d855e9b718c98780747d /cryptography
parentd49eae65a42ea08719253bed400fe81203bf7d38 (diff)
parent0d377e3fd03a2765ce5723c56800745671a45d22 (diff)
downloadcryptography-66197c4e26176c3c6c87441617800f5988804699.tar.gz
cryptography-66197c4e26176c3c6c87441617800f5988804699.tar.bz2
cryptography-66197c4e26176c3c6c87441617800f5988804699.zip
Merge pull request #800 from alex/style-cleanup
Small style cleanup for imports
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/hazmat/primitives/kdf/hkdf.py4
-rw-r--r--cryptography/hazmat/primitives/kdf/pbkdf2.py5
2 files changed, 4 insertions, 5 deletions
diff --git a/cryptography/hazmat/primitives/kdf/hkdf.py b/cryptography/hazmat/primitives/kdf/hkdf.py
index 10739178..95396fe1 100644
--- a/cryptography/hazmat/primitives/kdf/hkdf.py
+++ b/cryptography/hazmat/primitives/kdf/hkdf.py
@@ -17,8 +17,8 @@ import six
from cryptography import utils
from cryptography.exceptions import (
- AlreadyFinalized, InvalidKey, UnsupportedInterface)
-
+ AlreadyFinalized, InvalidKey, UnsupportedInterface
+)
from cryptography.hazmat.backends.interfaces import HMACBackend
from cryptography.hazmat.primitives import constant_time, hmac, interfaces
diff --git a/cryptography/hazmat/primitives/kdf/pbkdf2.py b/cryptography/hazmat/primitives/kdf/pbkdf2.py
index fcfe601a..f70a7ddf 100644
--- a/cryptography/hazmat/primitives/kdf/pbkdf2.py
+++ b/cryptography/hazmat/primitives/kdf/pbkdf2.py
@@ -17,9 +17,8 @@ import six
from cryptography import utils
from cryptography.exceptions import (
- InvalidKey, UnsupportedHash, AlreadyFinalized,
- UnsupportedInterface)
-
+ InvalidKey, UnsupportedHash, AlreadyFinalized, UnsupportedInterface
+)
from cryptography.hazmat.backends.interfaces import PBKDF2HMACBackend
from cryptography.hazmat.primitives import constant_time, interfaces