diff options
author | Derick Rethans <derick@php.net> | 2008-07-04 07:47:18 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2008-07-04 07:47:18 +0000 |
commit | 3657b0ab5c06f72eca6c16553c7491ebbb2bc325 (patch) | |
tree | 56a76233e0c479b13072d1025d11ba440484dea2 /ext/mcrypt/tests | |
parent | e360ff747659191a137792a6eff09e2f8118eeb6 (diff) | |
download | php-git-3657b0ab5c06f72eca6c16553c7491ebbb2bc325.tar.gz |
- Revert that crap.
Diffstat (limited to 'ext/mcrypt/tests')
-rw-r--r-- | ext/mcrypt/tests/bug35496.phpt | 4 | ||||
-rw-r--r-- | ext/mcrypt/tests/bug41252.phpt | 2 | ||||
-rw-r--r-- | ext/mcrypt/tests/bug43143.phpt | 2 | ||||
-rw-r--r-- | ext/mcrypt/tests/mcrypt_cbc.phpt | 2 | ||||
-rw-r--r-- | ext/mcrypt/tests/mcrypt_cbf.phpt | 2 | ||||
-rw-r--r-- | ext/mcrypt/tests/mcrypt_decrypt.phpt | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/ext/mcrypt/tests/bug35496.phpt b/ext/mcrypt/tests/bug35496.phpt index 93eb72beb4..3add65e02d 100644 --- a/ext/mcrypt/tests/bug35496.phpt +++ b/ext/mcrypt/tests/bug35496.phpt @@ -9,6 +9,6 @@ mcrypt_generic($td, "foobar"); mdecrypt_generic($td, "baz"); ?> --EXPECTF-- -Warning: mcrypt_generic(): Operation disallowed prior to mcrypt_generic_init() in %sbug35496.php on line 3 +Warning: mcrypt_generic(): Operation disallowed prior to mcrypt_generic_init(). in %sbug35496.php on line 3 -Warning: mdecrypt_generic(): Operation disallowed prior to mcrypt_generic_init() in %sbug35496.php on line 4 +Warning: mdecrypt_generic(): Operation disallowed prior to mcrypt_generic_init(). in %sbug35496.php on line 4 diff --git a/ext/mcrypt/tests/bug41252.phpt b/ext/mcrypt/tests/bug41252.phpt index b184f800f5..481fc54984 100644 --- a/ext/mcrypt/tests/bug41252.phpt +++ b/ext/mcrypt/tests/bug41252.phpt @@ -9,5 +9,5 @@ echo mcrypt_generic($td,'aaaaaaaa'); print "I'm alive!\n"; ?> --EXPECTF-- -Warning: mcrypt_generic(): Operation disallowed prior to mcrypt_generic_init() in %sbug41252.php on line 3 +Warning: mcrypt_generic(): Operation disallowed prior to mcrypt_generic_init(). in %sbug41252.php on line 3 I'm alive! diff --git a/ext/mcrypt/tests/bug43143.phpt b/ext/mcrypt/tests/bug43143.phpt index 90dd9fc488..4c390439e0 100644 --- a/ext/mcrypt/tests/bug43143.phpt +++ b/ext/mcrypt/tests/bug43143.phpt @@ -18,5 +18,5 @@ echo "END\n"; ECB CFB -Warning: mcrypt_encrypt(): Attempt to use an empty IV, which is NOT recommended in %sbug43143.php on line 9 +Warning: mcrypt_encrypt(): Attempt to use an empty IV, which is NOT recommend in %sbug43143.php on line 9 END diff --git a/ext/mcrypt/tests/mcrypt_cbc.phpt b/ext/mcrypt/tests/mcrypt_cbc.phpt index f25eae7265..f9160db011 100644 --- a/ext/mcrypt/tests/mcrypt_cbc.phpt +++ b/ext/mcrypt/tests/mcrypt_cbc.phpt @@ -20,4 +20,4 @@ mcrypt_cbc($cipher, $key, $enc_data, MCRYPT_DECRYPT); --EXPECTF-- PHP Testfest 2008 -Warning: mcrypt_cbc(): Attempt to use an empty IV, which is NOT recommended in %s on line %d +Warning: mcrypt_cbc(): Attempt to use an empty IV, which is NOT recommend in %s on line %d diff --git a/ext/mcrypt/tests/mcrypt_cbf.phpt b/ext/mcrypt/tests/mcrypt_cbf.phpt index 3886528d99..8ec3cd7d3e 100644 --- a/ext/mcrypt/tests/mcrypt_cbf.phpt +++ b/ext/mcrypt/tests/mcrypt_cbf.phpt @@ -20,4 +20,4 @@ mcrypt_cfb($cipher, $key, $enc_data, MCRYPT_DECRYPT); --EXPECTF-- PHP Testfest 2008 -Warning: mcrypt_cfb(): Attempt to use an empty IV, which is NOT recommended in %s on line %d
\ No newline at end of file +Warning: mcrypt_cfb(): Attempt to use an empty IV, which is NOT recommend in %s on line %d
\ No newline at end of file diff --git a/ext/mcrypt/tests/mcrypt_decrypt.phpt b/ext/mcrypt/tests/mcrypt_decrypt.phpt index 371c21db8e..b4e628401e 100644 --- a/ext/mcrypt/tests/mcrypt_decrypt.phpt +++ b/ext/mcrypt/tests/mcrypt_decrypt.phpt @@ -22,7 +22,7 @@ var_dump(strpos(mcrypt_decrypt(MCRYPT_BLOWFISH, "FooBar", $enc_data, MCRYPT_MODE --EXPECTF-- PHP Testfest 2008 -Warning: mcrypt_decrypt(): Attempt to use an empty IV, which is NOT recommended in %s on line %d +Warning: mcrypt_decrypt(): Attempt to use an empty IV, which is NOT recommend in %s on line %d Warning: mcrypt_decrypt(): The IV parameter must be as long as the blocksize in %s on line %d bool(false)
\ No newline at end of file |