php-src/ext/mcrypt/tests/bug37595.phpt
Antony Dovgal e3472f198a add skipif
2007-07-16 13:35:31 +00:00

58 lines
1.1 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--TEST--
Bug #37595 (mcrypt_generic calculates data length in wrong way)
--SKIPIF--
<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
--FILE--
<?php
$cipher_alg = MCRYPT_BLOWFISH;
$skey = array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15);
$key=b'';
foreach($skey as $t) {
$key .= (binary) chr($t);
}
$sstr = array(1,2,3,4,5,6,7,8);
$iv=b'';
foreach($sstr as $s) {
$iv .= (binary) chr($s);
}
$str = b"12345678";
$td = mcrypt_module_open(MCRYPT_BLOWFISH,'',MCRYPT_MODE_CBC,'');
$data = Array(
b'12345678',
b'123456789',
b"\x001234567",
b'',
b'1234567812345678',
b'12345678123456789'
);
foreach ($data as $val) {
mcrypt_generic_init($td, $key, $iv);
$enc = mcrypt_generic($td, $val);
mcrypt_generic_deinit($td);
mcrypt_generic_init($td, $key, $iv);
var_dump($dec = @mdecrypt_generic($td, $enc));
}
mcrypt_module_close($td);
echo "Done\n";
?>
--EXPECTF--
string(8) "12345678"
string(16) "123456789"
string(8) "1234567"
Warning: mcrypt_generic(): An empty string was passed in %s on line %d
bool(false)
string(16) "1234567812345678"
string(24) "12345678123456789"
Done