From 7a3c59d21dced92aef56435c9dd7f0fb7354dd79 Mon Sep 17 00:00:00 2001 From: Paragon Initiative Enterprises Date: Tue, 16 Apr 2024 19:54:51 -0400 Subject: [PATCH] Remove debug code --- src/Core/AES/Block.php | 12 ------------ 1 file changed, 12 deletions(-) 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);