openssl_cipher_iv_length()函數是PHP中的一個內置函數,用於獲取密碼初始化向量(iv)的長度。初始化向量(iv)是隨數字一起使用的任意數字,用於數據加密。每個密碼方法都有一個與之關聯的初始化向量長度。
用法:
int openssl_cipher_iv_length( string $method )
參數:該函數接受一個包含密碼方法的參數$method。
返回值:如果成功,此函數返回密碼長度;如果失敗,則返回FALSE。
異常:當密碼算法未知時,此函數將引發E_WARNING級錯誤。
以下示例說明了PHP中的openssl_cipher_iv_length()函數:
範例1:在此程序中,我們將獲得aes-128-gcm密碼算法的iv長度
<?php
// The cipher method to get iv length of
$method = 'aes-128-gcm';
// Get the iv length
$ivl = openssl_cipher_iv_length($method);
// Output the ivl to
echo $ivl;
?>
輸出:
12
範例2:在此程序中,我們將獲得camellia-192-cfb8密碼算法的iv長度
<?php
// The cipher method to get iv length of
$method = 'camellia-192-cfb8';
// Get the iv length
$ivl = openssl_cipher_iv_length($method);
// Output the ivl to
echo $ivl;
?>
輸出:
16
參考: https://www.php.net/manual/en/function.openssl-cipher-iv-length.php
相關用法
- p5.js cos()用法及代碼示例
- p5.js arc()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP ord()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP Ds\Map first()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js min()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js red()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | openssl_cipher_iv_length() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。