From: Nikita Popov <nikic@php.net>
Date: Mon, 13 Aug 2012 19:44:50 +0000 (+0200)
Subject: Rename mcrypt_cbf -> mcrypt_cfb
X-Git-Tag: php-5.3.17~36
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9bc1af1e5855c8cfc6886b5aaedbcb86a2ef42d7;p=php

Rename mcrypt_cbf -> mcrypt_cfb

Also fix ECB -> CFB in the initialization vector size call (not that it
makes a difference, they have the same size).
---

diff --git a/ext/mcrypt/tests/mcrypt_cbf.phpt b/ext/mcrypt/tests/mcrypt_cfb.phpt
similarity index 91%
rename from ext/mcrypt/tests/mcrypt_cbf.phpt
rename to ext/mcrypt/tests/mcrypt_cfb.phpt
index 8ec3cd7d3e..54919c8589 100644
--- a/ext/mcrypt/tests/mcrypt_cbf.phpt
+++ b/ext/mcrypt/tests/mcrypt_cfb.phpt
@@ -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