1--TEST--
2mcrypt_module_get_algo_block_size
3--SKIPIF--
4<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
5--FILE--
6<?php
7var_dump(mcrypt_module_get_algo_block_size(MCRYPT_RIJNDAEL_256));
8var_dump(mcrypt_module_get_algo_block_size(MCRYPT_RIJNDAEL_192));
9var_dump(mcrypt_module_get_algo_block_size(MCRYPT_RC2));
10var_dump(mcrypt_module_get_algo_block_size(MCRYPT_XTEA));
11var_dump(mcrypt_module_get_algo_block_size(MCRYPT_CAST_128));
12var_dump(mcrypt_module_get_algo_block_size(MCRYPT_BLOWFISH));
13--EXPECT--
14int(32)
15int(24)
16int(8)
17int(8)
18int(8)
19int(8)
20