diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-05 13:10:28 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-05 13:10:28 +0100 |
commit | d9a48da095e2b76c65b1b9ebd26b6f06c94cb0e5 (patch) | |
tree | 643edcde49de348ab7defa94a25f28db5ccf845f /tests/codeigniter/libraries/Encryption_test.php | |
parent | e7516b09402580c4fe0bf0ff537f367c1ba0efd2 (diff) |
CI_Encryption: Add Blowfish to compatibility list
Diffstat (limited to 'tests/codeigniter/libraries/Encryption_test.php')
-rw-r--r-- | tests/codeigniter/libraries/Encryption_test.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/codeigniter/libraries/Encryption_test.php b/tests/codeigniter/libraries/Encryption_test.php index 3d091e8d8..b13cb3140 100644 --- a/tests/codeigniter/libraries/Encryption_test.php +++ b/tests/codeigniter/libraries/Encryption_test.php @@ -21,10 +21,6 @@ class Encryption_test extends CI_TestCase { $message = 'This is a message encrypted via MCrypt and decrypted via OpenSSL, or vice-versa.'; - // As it turns out, only ciphers that happened to be a US standard have a - // somewhat consistent implementation between MCrypt and OpenSSL, so - // we can only test AES, DES and TripleDES. - // // Format is: <MCrypt cipher name>, <OpenSSL cipher name>, <key size> $portable = array( array('rijndael-128', 'aes-128', 16), @@ -33,7 +29,9 @@ class Encryption_test extends CI_TestCase { array('des', 'des', 7), array('tripledes', 'des-ede3', 7), array('tripledes', 'des-ede3', 14), - array('tripledes', 'des-ede3', 21) + array('tripledes', 'des-ede3', 21), + array('blowfish', 'bf', 16), + array('blowfish', 'bf', 56) ); $driver_index = array('mcrypt', 'openssl'); |