noch eine schleifenbedingung gefixt.

This commit is contained in:
Marcel Naeve 2024-04-17 21:51:08 +02:00
parent cf660d21c3
commit b5e00ea00a
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class NumberBaseCryptCollection extends NumberBaseCrypt {
*/
public function decryptComplex(string $data, array $digitList) : array {
$cd = [];
for($i=0;$i<$digitList;$i++) {
for($i=0;$i<count($digitList);$i++) {
$numberBaseCrypt = new NumberBaseCrypt($digitList[$i]);
$len = substr($data, 0, 1);