We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
private static function invMain($state, $expandedKey, $nbrRounds){ $state = self::addRoundKey($state, self::createRoundKey($expandedKey,16_$nbrRounds)); for ($i = $nbrRounds-1; $i > 0; $i--) $state = self::invRound($state, self::createRoundKey($expandedKey,16_i));
Look at the end of last line -> 16*i i - is not php variable
The text was updated successfully, but these errors were encountered:
Fix: i is not varriable (closes issue escolarea-labs#1)
22746b5
11ca15e
c04a7e3
No branches or pull requests
private static function invMain($state, $expandedKey, $nbrRounds){
$state = self::addRoundKey($state, self::createRoundKey($expandedKey,16_$nbrRounds));
for ($i = $nbrRounds-1; $i > 0; $i--)
$state = self::invRound($state, self::createRoundKey($expandedKey,16_i));
Look at the end of last line -> 16*i
i - is not php variable
The text was updated successfully, but these errors were encountered: