1 parent 3adbc72 commit 049f3d4Copy full SHA for 049f3d4
1 file changed
src/HOTP.php
@@ -31,8 +31,6 @@ public static function generateByCounter(string $key, int $counter): HOTPResult
31
$counter = $counter >> 8;
32
}
33
34
- $binCounter = implode($curCounter);
35
-
36
// Pad to 8 chars
37
$binCounter = str_pad(implode("", $curCounter), 8, chr(0), STR_PAD_LEFT);
38
0 commit comments