summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index 7e5fd85..478c034 100644
--- a/utils.py
+++ b/utils.py
@@ -182,8 +182,6 @@ def constant_time_compare(val1, val2):
This is should be implemented in C in order to get it completely right.
"""
- if _builtin_constant_time_compare is not None:
- return _builtin_constant_time_compare(val1, val2)
len_eq = len(val1) == len(val2)
if len_eq:
result = 0