Commit a55a98d7 authored by cirpo's avatar cirpo
Browse files

added missing second parameter to mb_strlen call in timingSafeEquals

Showing with 1 addition and 1 deletion
+1 -1
......@@ -53,7 +53,7 @@ abstract class HMAC implements SignerInterface
if (\function_exists('mb_strlen')) {
$knownLength = \mb_strlen($known, '8bit');
$inputLength = \mb_strlen($input);
$inputLength = \mb_strlen($input, '8bit');
}
$result = 0;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment