diff --git a/src/Core/AES/Block.php b/src/Core/AES/Block.php index 97d704de..07615039 100644 --- a/src/Core/AES/Block.php +++ b/src/Core/AES/Block.php @@ -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);