aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-02-03 11:12:53 -0800
committerDavid Reid <dreid@dreid.org>2014-02-03 11:12:53 -0800
commitaaf23026695eb404d435ca4f5a0c2222b804438e (patch)
tree1437a65d5b6758d70c0a0bf40e82b25f5eed547a
parent6385561ee16742da28dacd1b4dce27baf7f0bb48 (diff)
downloadcryptography-aaf23026695eb404d435ca4f5a0c2222b804438e.tar.gz
cryptography-aaf23026695eb404d435ca4f5a0c2222b804438e.tar.bz2
cryptography-aaf23026695eb404d435ca4f5a0c2222b804438e.zip
Fix typo
-rw-r--r--cryptography/hazmat/primitives/kdf/hkdf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/kdf/hkdf.py b/cryptography/hazmat/primitives/kdf/hkdf.py
index c98a31c2..af15b64d 100644
--- a/cryptography/hazmat/primitives/kdf/hkdf.py
+++ b/cryptography/hazmat/primitives/kdf/hkdf.py
@@ -14,7 +14,7 @@
import six
from cryptography import utils
-from cryptogrpahy.exceptions import AlreadyFinalized, InvalidKey
+from cryptography.exceptions import AlreadyFinalized, InvalidKey
from cryptography.hazmat.primitives import constant_time, hmac, interfaces