mcrypt_module_get_supported_key_sizes

(PHP 4 >= 4.0.2, PHP 5, PHP 7 < 7.2.0, PECL mcrypt >= 1.0.0)

mcrypt_module_get_supported_key_sizes以數組形式返回打開的算法所支持的密鑰大小

警告

本函數已自 PHP 7.1.0 起廢棄。強烈建議不要使用本函數。

說明

mcrypt_module_get_supported_key_sizes(string $algorithm, string $lib_dir = ?): array

以數組形式返回指定算法所支持的密鑰大小。 如果從 1 到 mcrypt_module_get_algo_key_size() 的密鑰大小都支持,則返回空數組。

參數

algorithm

算法名稱。

lib_dir

可選參數, 表示在操作系統(tǒng)上包含算法模塊的路徑。

返回值

以數組形式返回指定算法所支持的密鑰大小。 如果從 1 到 mcrypt_module_get_algo_key_size() 的密鑰大小都支持,則返回空數組。

參見