]> granicus.if.org Git - php/commitdiff
Rename mcrypt_cbf -> mcrypt_cfb
authorNikita Popov <nikic@php.net>
Mon, 13 Aug 2012 19:44:50 +0000 (21:44 +0200)
committerNikita Popov <nikic@php.net>
Mon, 13 Aug 2012 20:01:03 +0000 (22:01 +0200)
Also fix ECB -> CFB in the initialization vector size call (not that it
makes a difference, they have the same size).

ext/mcrypt/tests/mcrypt_cfb.phpt [moved from ext/mcrypt/tests/mcrypt_cbf.phpt with 91% similarity]

similarity index 91%
rename from ext/mcrypt/tests/mcrypt_cbf.phpt
rename to ext/mcrypt/tests/mcrypt_cfb.phpt
index 8ec3cd7d3e07f58e44fd7afdbf66ce9d38c2f054..54919c858971c6cbaec0dd8b6dd2dde27452f9e6 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-mcrypt_cbf
+mcrypt_cfb
 --SKIPIF--
 <?php if (!extension_loaded("mcrypt")) print "skip"; ?>
 --FILE--
@@ -8,7 +8,7 @@ $key      = "FooBar";
 $secret   = "PHP Testfest 2008";
 $cipher   = MCRYPT_RIJNDAEL_128;
 
-$iv       = mcrypt_create_iv(mcrypt_get_iv_size($cipher, MCRYPT_MODE_ECB), MCRYPT_RAND);
+$iv       = mcrypt_create_iv(mcrypt_get_iv_size($cipher, MCRYPT_MODE_CFB), MCRYPT_RAND);
 $enc_data = mcrypt_cfb($cipher, $key, $secret, MCRYPT_ENCRYPT, $iv);
 
 // we have to trim as AES rounds the blocks and decrypt doesnt detect that
@@ -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 recommend 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