(PHP 8 >= 8.2.0)
openssl_cipher_key_length — 获取密码密钥长度
cipher_algo
密码方法,有关可能值的列表,请参见 openssl_get_cipher_methods()。
成功时返回密码长度,失败时返回 false
。
当密码算法未知时,发出 E_WARNING
级别的错误。
示例 #1 openssl_cipher_key_length() 示例
<?php
$method = 'AES-128-CBC';
var_dump(openssl_cipher_key_length($method));
?>
上面的示例将输出类似于以下内容
int(16)