Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Apr 16, 2024
1 parent 93f63cb commit 7a3c59d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Core/AES/Block.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,6 @@ public function __construct($size = 8)
$this->values = array_fill(0, $size, 0);
}

/**
* @TODO DELETE ME BEFORE COMMITTING
*/
public function dump($label = '', $indent = 0, $varName = 'q')
{
echo $label, ':', PHP_EOL;
for ($c = 0; $c < 8; ++$c) {
echo str_repeat(' ', $indent);
printf("%s[%d] = %08x\n", $varName, $c, $this->values[$c]);
}
}

public static function init()
{
return new self(8);
Expand Down

0 comments on commit 7a3c59d

Please sign in to comment.