1--TEST--
2mcrypt_module_get_supported_key_sizes
3--SKIPIF--
4<?php if (!extension_loaded("mcrypt")) print "skip"; ?>
5--FILE--
6<?php
7var_dump(mcrypt_module_get_supported_key_sizes(MCRYPT_RIJNDAEL_256));
8var_dump(mcrypt_module_get_supported_key_sizes(MCRYPT_RC2));
9--EXPECTF--
10Deprecated: Function mcrypt_module_get_supported_key_sizes() is deprecated in %s%emcrypt_module_get_supported_key_sizes.php on line 2
11array(3) {
12  [0]=>
13  int(16)
14  [1]=>
15  int(24)
16  [2]=>
17  int(32)
18}
19
20Deprecated: Function mcrypt_module_get_supported_key_sizes() is deprecated in %s%emcrypt_module_get_supported_key_sizes.php on line 3
21array(0) {
22}
23