openssl_spki_verify()函数是PHP中的内置函数,用于验证提供的签名公共 key 和质询。这应该是与用于签名的私钥相对应的公钥。它验证签名的公钥和挑战。
用法:
string openssl_spki_verify( string &$spkac )
参数:该函数接受如上所述和以下描述的单个参数。
- $spkac:最初的SPKI仅将主体标识为公用 key ,但允许对这些 key 具有绑定权限,并允许将权限从一个 key 委派给另一个。
返回值:此函数在成功或失败时返回布尔值。
错误/异常:如果通过spkac参数传递了无效的参数,则E_WARNING级别将发出错误。
例:以下示例程序旨在说明PHP中的openssl_spki_verify()函数。
PHP
<?php
error_reporting(E_ERROR | E_PARSE);
/* Array of private key sizes to test */
$ksize = array('1024'=>1024,
'2048'=>2048,
'4096'=>4096);
/* Array of available hashings to test */
$algo = array(
'sha512'=>OPENSSL_ALGO_SHA512,
'rmd160'=>OPENSSL_ALGO_RMD160
);
/* Loop over key sizes for test */
foreach($ksize as $k => $v) {
/* generate new private key of
specified size to use for tests */
$pkey = openssl_pkey_new(array
('digest_alg' => 'sha512',
'private_key_type' => OPENSSL_KEYTYPE_RSA,
'private_key_bits' => $v)
);
openssl_pkey_export($pkey, $pass);
/* Loop to create and verify results */
foreach($algo as $key => $value) {
$spkac = openssl_spki_new(
$pkey, _uuid(), $value);
echo "Positive verification::Algo:"
. $key . ", value:";
var_dump(openssl_spki_verify(
preg_replace('/SPKAC=/', '', $spkac)));
echo "Negative verification::Algo:"
. $key . ", value:";
var_dump(openssl_spki_verify(
$spkac . 'Make it fail'));
echo "\n";
}
openssl_free_key($pkey);
}
/* Generate a random challenge */
function _uuid() {
return sprintf(
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
mt_rand(0, 0xffff), mt_rand(0, 0xffff),
mt_rand(0, 0xffff), mt_rand(0, 0x0fff) | 0x4000,
mt_rand(0, 0x3fff) | 0x8000, mt_rand(0, 0xffff),
mt_rand(0, 0xffff), mt_rand(0, 0xffff)
);
}
?>
输出:
Positive verification::Algo:sha512, value:bool(true) Negative verification::Algo:sha512, value:bool(false) Positive verification::Algo:rmd160, value:bool(true) Negative verification::Algo:rmd160, value:bool(false) Positive verification::Algo:sha512, value:bool(true) Negative verification::Algo:sha512, value:bool(false) Positive verification::Algo:rmd160, value:bool(true) Negative verification::Algo:rmd160, value:bool(false) Positive verification::Algo:sha512, value:bool(true) Negative verification::Algo:sha512, value:bool(false) Positive verification::Algo:rmd160, value:bool(true) Negative verification::Algo:rmd160, value:bool(false)
参考:https://www.php.net/manual/en/function.openssl-spki-verify.php
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- PHP fpassthru( )用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP array_intersect_ukey()用法及代码示例
注:本文由纯净天空筛选整理自shubham_singh大神的英文原创作品 PHP openssl_spki_verify() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。