Skip to content

Commit

Permalink
Remove encryption test
Browse files Browse the repository at this point in the history
  • Loading branch information
NielBuys committed Feb 28, 2024
1 parent 7c4cabf commit 494a84f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/codeigniter/libraries/Encryption_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,6 @@ public function test_initialize_encrypt_decrypt()

$this->assertEquals($message, $this->encryption->decrypt($this->encryption->encrypt($message)));

// Try DES in ECB mode, just for the sake of changing stuff
$this->encryption->initialize(array('cipher' => 'des', 'mode' => 'ecb', 'key' => substr($key, 0, 8)));
$this->assertEquals($message, $this->encryption->decrypt($this->encryption->encrypt($message)));
}

// --------------------------------------------------------------------
Expand Down

0 comments on commit 494a84f

Please sign in to comment.