(PHP 5 >= 5.3.3, PHP 7, PHP 8)
openssl_cipher_iv_length — 获取密码iv长度
$method
): int获取密码初始化向量(iv)长度。
method
密码的方法,更多值查看 openssl_get_cipher_methods() 函数。
成功,返回密码长度, 失败返回 false
.
当密码方法未知时,抛出一个E_WARNING
级的错误。
示例 #1 openssl_cipher_iv_length() 范例
<?php
$method = 'AES-128-CBC';
$ivlen = openssl_cipher_iv_length($method);
echo $ivlen;
?>
以上例程的输出类似于:
16