diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-19 10:48:37 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-19 10:48:37 -0800 |
commit | 844c2870be39af0872cd68e6204597d6663561cd (patch) | |
tree | 5d414662eb93d58289459d06a3294a29ec733550 | |
parent | 624947cd6d884a10d5f1e984612f25ea07a1ffbb (diff) | |
download | cryptography-844c2870be39af0872cd68e6204597d6663561cd.tar.gz cryptography-844c2870be39af0872cd68e6204597d6663561cd.tar.bz2 cryptography-844c2870be39af0872cd68e6204597d6663561cd.zip |
Constant time comparisons here
-rw-r--r-- | cryptography/hazmat/primitives/padding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/padding.py b/cryptography/hazmat/primitives/padding.py index 4e834726..cf7dbecd 100644 --- a/cryptography/hazmat/primitives/padding.py +++ b/cryptography/hazmat/primitives/padding.py @@ -49,8 +49,8 @@ bool Cryptography_check_padding(const uint8_t *data, uint8_t block_len) { } /* Check to make sure the pad_size was within the valid range. */ - mismatch |= !(0 < pad_size); - mismatch |= !(pad_size <= block_len); + mismatch |= ~Cryptography_constant_time_lt(0, pad_size); + mismatch |= Cryptography_constant_time_lt(block_len, pad_size); /* Make sure any bits set are copied to the lowest bit */ mismatch |= mismatch >> 4; |