diff options
author | David Reid <dreid@dreid.org> | 2014-01-29 10:46:13 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-02-03 10:05:27 -0800 |
commit | 368894cd81934d617a8b177bc6d2e73d6d45e8a9 (patch) | |
tree | c85b3de16ee1376f6ebb1137dee703a7824f4eb9 | |
parent | f3f8df349f78b38a9a713030e25b7a238e32cb21 (diff) | |
download | cryptography-368894cd81934d617a8b177bc6d2e73d6d45e8a9.tar.gz cryptography-368894cd81934d617a8b177bc6d2e73d6d45e8a9.tar.bz2 cryptography-368894cd81934d617a8b177bc6d2e73d6d45e8a9.zip |
Remove redundant type checks per @alex and @reaperhulk.
-rw-r--r-- | cryptography/hazmat/primitives/kdf/hkdf.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cryptography/hazmat/primitives/kdf/hkdf.py b/cryptography/hazmat/primitives/kdf/hkdf.py index 7dae2b6c..2b5ba815 100644 --- a/cryptography/hazmat/primitives/kdf/hkdf.py +++ b/cryptography/hazmat/primitives/kdf/hkdf.py @@ -106,17 +106,5 @@ class HKDF(object): return self._expand(self._extract(key_material)) def verify(self, key_material, expected_key): - if isinstance(key_material, six.text_type): - raise TypeError( - "Unicode-objects must be encoded before using them as key " - "material." - ) - - if isinstance(expected_key, six.text_type): - raise TypeError( - "Unicode-objects must be encoded before using them as " - "expected key material." - ) - if not constant_time.bytes_eq(self.derive(key_material), expected_key): raise exceptions.InvalidKey |