aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-05-07 16:22:09 +0800
committerAyrx <terrycwk1994@gmail.com>2014-05-07 16:22:09 +0800
commitc0ce911b4e971f3090d406cb88dea532647eeac6 (patch)
tree50eab3ca8d17a9f816468ad922855d5cd8eb351d /cryptography
parent9d72f12dcb28191f87fde9740899a39060e14495 (diff)
downloadcryptography-c0ce911b4e971f3090d406cb88dea532647eeac6.tar.gz
cryptography-c0ce911b4e971f3090d406cb88dea532647eeac6.tar.bz2
cryptography-c0ce911b4e971f3090d406cb88dea532647eeac6.zip
Renamed HKDFExpandOnly to HKDFExpand
Diffstat (limited to 'cryptography')
-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 6d34a0f7..44e14817 100644
--- a/cryptography/hazmat/primitives/kdf/hkdf.py
+++ b/cryptography/hazmat/primitives/kdf/hkdf.py
@@ -103,7 +103,7 @@ class HKDF(object):
@utils.register_interface(interfaces.KeyDerivationFunction)
-class HKDFExpandOnly(HKDF):
+class HKDFExpand(HKDF):
def __init__(self, algorithm, length, info, backend):
HKDF.__init__(self, algorithm, length, None, info, backend)