diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-05-09 14:48:06 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-05-09 14:48:06 +0800 |
commit | 2d6cd449f1ad3448798d77d9216aded95b861a8d (patch) | |
tree | fca1dbbb85e0e2ad89d003cc502ef8d244a41bc6 /tests | |
parent | ac1a079f9baf441c262fd11628f3e3d06f73129d (diff) | |
download | cryptography-2d6cd449f1ad3448798d77d9216aded95b861a8d.tar.gz cryptography-2d6cd449f1ad3448798d77d9216aded95b861a8d.tar.bz2 cryptography-2d6cd449f1ad3448798d77d9216aded95b861a8d.zip |
Minor fixes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/utils.py | 2 |
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"]) |