aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-05-09 14:48:06 +0800
committerAyrx <terrycwk1994@gmail.com>2014-05-09 14:48:06 +0800
commit2d6cd449f1ad3448798d77d9216aded95b861a8d (patch)
treefca1dbbb85e0e2ad89d003cc502ef8d244a41bc6 /tests/hazmat
parentac1a079f9baf441c262fd11628f3e3d06f73129d (diff)
downloadcryptography-2d6cd449f1ad3448798d77d9216aded95b861a8d.tar.gz
cryptography-2d6cd449f1ad3448798d77d9216aded95b861a8d.tar.bz2
cryptography-2d6cd449f1ad3448798d77d9216aded95b861a8d.zip
Minor fixes
Diffstat (limited to 'tests/hazmat')
-rw-r--r--tests/hazmat/primitives/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py
index 7cf5efd0..a496459b 100644
--- a/tests/hazmat/primitives/utils.py
+++ b/tests/hazmat/primitives/utils.py
@@ -354,7 +354,7 @@ def hkdf_expand_test(backend, algorithm, params):
backend=backend
)
- okm = hkdf._expand(binascii.unhexlify(params["prk"]))
+ okm = hkdf.derive(binascii.unhexlify(params["prk"]))
assert okm == binascii.unhexlify(params["okm"])