HEX
Server: Apache/2.4.18 (Ubuntu)
System: Linux ubuntu 7.0.5-x86_64-linode173 #1 SMP PREEMPT_DYNAMIC Fri May 8 10:12:05 EDT 2026 x86_64
User: root (0)
PHP: 7.2.28-1+ubuntu16.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //usr/share/php/tests/mcrypt/tests/bug37595.phpt
--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='';
foreach($skey as $t) {
	    $key .= chr($t);
		}
 
$sstr = array(1,2,3,4,5,6,7,8);
$iv='';
foreach($sstr as $s) {
    $iv .= chr($s);
}
 
$str = "12345678";
 
$td = mcrypt_module_open(MCRYPT_BLOWFISH,'',MCRYPT_MODE_CBC,'');
 
$data = Array(
	'12345678',
	'123456789',
	"\x001234567",
	'',
	'1234567812345678',
	'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--	
Deprecated: Function mcrypt_module_open() is deprecated in %s%ebug37595.php on line 18

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 30

Deprecated: Function mcrypt_generic() is deprecated in %s%ebug37595.php on line 31

Deprecated: Function mcrypt_generic_deinit() is deprecated in %s%ebug37595.php on line 33

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 35
string(8) "12345678"

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 30

Deprecated: Function mcrypt_generic() is deprecated in %s%ebug37595.php on line 31

Deprecated: Function mcrypt_generic_deinit() is deprecated in %s%ebug37595.php on line 33

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 35
string(16) "123456789"

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 30

Deprecated: Function mcrypt_generic() is deprecated in %s%ebug37595.php on line 31

Deprecated: Function mcrypt_generic_deinit() is deprecated in %s%ebug37595.php on line 33

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 35
string(8) "1234567"

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 30

Deprecated: Function mcrypt_generic() is deprecated in %s%ebug37595.php on line 31

Warning: mcrypt_generic(): An empty string was passed in %s%ebug37595.php on line 31

Deprecated: Function mcrypt_generic_deinit() is deprecated in %s%ebug37595.php on line 33

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 35
bool(false)

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 30

Deprecated: Function mcrypt_generic() is deprecated in %s%ebug37595.php on line 31

Deprecated: Function mcrypt_generic_deinit() is deprecated in %s%ebug37595.php on line 33

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 35
string(16) "1234567812345678"

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 30

Deprecated: Function mcrypt_generic() is deprecated in %s%ebug37595.php on line 31

Deprecated: Function mcrypt_generic_deinit() is deprecated in %s%ebug37595.php on line 33

Deprecated: Function mcrypt_generic_init() is deprecated in %s%ebug37595.php on line 35
string(24) "12345678123456789"

Deprecated: Function mcrypt_module_close() is deprecated in %s%ebug37595.php on line 39
Done