openssl_get_cipher_methods()函数是PHP中的内置函数,用于获取所有可用的密码方法。
用法:
array openssl_get_cipher_methods( bool $aliases = FALSE )
参数:该函数接受单个参数$aliases,该参数决定是否应使用密码别名。
返回值:此函数返回可用密码方法的数组。
下面给出的程序说明了PHP中的openssl_get_cipher_methods()函数:
程序1:在此程序中,我们将列出所有可用的密码。
<?php
// Get all the ciphers
$ciphers = openssl_get_cipher_methods();
// Output the cipher to screen
print("<pre>".print_r($ciphers, true)."</pre>");
?>
输出:
Array ( [0] => aes-128-cbc [1] => aes-128-cbc-hmac-sha1 [2] => aes-128-cbc-hmac-sha256 [3] => aes-128-ccm [4] => aes-128-cfb [5] => aes-128-cfb1 [6] => aes-128-cfb8 [7] => aes-128-ctr . . . It will be a long list of all the ciphers.
程序2:在此程序中,我们将检查是否支持密码。
<?php
// Get all the ciphers
$ciphers = openssl_get_cipher_methods();
// Check if aes-128-cfb is supported
$isSupported1 = in_array('aes-128-cfb', $ciphers);
if ($isSupported1) {
echo 'aes-128-cfb is supported.<br>';
}
// Check if unknown-cipher is supported
$isSupported2 = in_array('unknown-cipher', $ciphers);
if (!$isSupported2) {
echo 'unknown-cipher is not supported.';
}
?>
输出:
aes-128-cfb is supported. unknown-cipher is not supported.
参考: https://www.php.net/manual/en/function.openssl-get-cipher-methods.php
相关用法
- PHP max( )用法及代码示例
- p5.js str()用法及代码示例
- d3.js d3.rgb()用法及代码示例
- PHP each()用法及代码示例
- p5.js tan()用法及代码示例
- p5.js log()用法及代码示例
- p5.js sin()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP min( )用法及代码示例
- d3.js d3.lab()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP Ds\Map map()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | openssl_get_cipher_methods() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。