From cb0fa2e323fde10d5fa61bcc32d87a567690e34a Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 29 May 2016 22:37:33 -0500 Subject: KBKDF cleanup (#2929) * unicode characters make everything angry * changelog entry and make skip msgs more informative * typo fix --- src/cryptography/hazmat/primitives/kdf/kbkdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/cryptography/hazmat/primitives/kdf/kbkdf.py b/src/cryptography/hazmat/primitives/kdf/kbkdf.py index 70a0fdc6..29ac0fad 100644 --- a/src/cryptography/hazmat/primitives/kdf/kbkdf.py +++ b/src/cryptography/hazmat/primitives/kdf/kbkdf.py @@ -112,7 +112,7 @@ class KBKDFHMAC(object): output = [b''] # For counter mode, the number of iterations shall not be - # larger than 2^r-1, where r ≤ 32 is the binary length of the counter + # larger than 2^r-1, where r <= 32 is the binary length of the counter # This ensures that the counter values used as an input to the # PRF will not repeat during a particular call to the KDF function. r_bin = utils.int_to_bytes(1, self._rlen) -- cgit v1.2.3