openssl_cipher_iv_length
openssl_cipher_iv_length
(PHP 5 >= PHP 5.3.3, PHP 7)
openssl_cipher_iv_length - 获取密码 iv 的长度
描述
int openssl_cipher_iv_length ( string $method )
获取密码初始化向量(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
openssl_csr_export_to_file →