mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
Merge branch 'pull-request/1511'
* pull-request/1511: Changed from testing cast-128 to cast-256
This commit is contained in:
commit
e7f7164e87
@ -8,12 +8,13 @@ var_dump(mcrypt_module_get_algo_block_size(MCRYPT_RIJNDAEL_256));
|
||||
var_dump(mcrypt_module_get_algo_block_size(MCRYPT_RIJNDAEL_192));
|
||||
var_dump(mcrypt_module_get_algo_block_size(MCRYPT_RC2));
|
||||
var_dump(mcrypt_module_get_algo_block_size(MCRYPT_XTEA));
|
||||
var_dump(mcrypt_module_get_algo_block_size(MCRYPT_CAST_128));
|
||||
var_dump(mcrypt_module_get_algo_block_size(MCRYPT_CAST_256));
|
||||
var_dump(mcrypt_module_get_algo_block_size(MCRYPT_BLOWFISH));
|
||||
?>
|
||||
--EXPECT--
|
||||
int(32)
|
||||
int(24)
|
||||
int(8)
|
||||
int(8)
|
||||
int(8)
|
||||
int(16)
|
||||
int(8)
|
||||
|
@ -8,12 +8,13 @@ var_dump(mcrypt_module_get_algo_key_size(MCRYPT_RIJNDAEL_256));
|
||||
var_dump(mcrypt_module_get_algo_key_size(MCRYPT_RIJNDAEL_192));
|
||||
var_dump(mcrypt_module_get_algo_key_size(MCRYPT_RC2));
|
||||
var_dump(mcrypt_module_get_algo_key_size(MCRYPT_XTEA));
|
||||
var_dump(mcrypt_module_get_algo_key_size(MCRYPT_CAST_128));
|
||||
var_dump(mcrypt_module_get_algo_key_size(MCRYPT_CAST_256));
|
||||
var_dump(mcrypt_module_get_algo_key_size(MCRYPT_BLOWFISH));
|
||||
?>
|
||||
--EXPECT--
|
||||
int(32)
|
||||
int(32)
|
||||
int(128)
|
||||
int(16)
|
||||
int(16)
|
||||
int(32)
|
||||
int(56)
|
||||
|
Loading…
Reference in New Issue
Block a user