diff --git a/src/TokenType/MAC.php b/src/TokenType/MAC.php index 8f6f1903..1eb3b930 100644 --- a/src/TokenType/MAC.php +++ b/src/TokenType/MAC.php @@ -128,22 +128,18 @@ class MAC extends AbstractTokenType implements TokenTypeInterface */ private function hash_equals($knownString, $userString) { - if (!function_exists('hash_equals')) { - function hash_equals($knownString, $userString) - { - if (strlen($knownString) !== strlen($userString)) { - return false; - } - $len = strlen($knownString); - $result = 0; - for ($i = 0; $i < $len; $i++) { - $result |= (ord($knownString[$i]) ^ ord($userString[$i])); - } - // They are only identical strings if $result is exactly 0... - return 0 === $result; - } + if (function_exists('\hash_equals')) { + return \hash_equals($knownString, $userString); } - - return hash_equals($knownString, $userString); + if (strlen($knownString) !== strlen($userString)) { + return false; + } + $len = strlen($knownString); + $result = 0; + for ($i = 0; $i < $len; $i++) { + $result |= (ord($knownString[$i]) ^ ord($userString[$i])); + } + // They are only identical strings if $result is exactly 0... + return 0 === $result; } }