Skip to content

Commit 049f3d4

Browse files
authored
HOTP: Remove redunant implode call
1 parent 3adbc72 commit 049f3d4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/HOTP.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ public static function generateByCounter(string $key, int $counter): HOTPResult
3131
$counter = $counter >> 8;
3232
}
3333

34-
$binCounter = implode($curCounter);
35-
3634
// Pad to 8 chars
3735
$binCounter = str_pad(implode("", $curCounter), 8, chr(0), STR_PAD_LEFT);
3836

0 commit comments

Comments
 (0)