php基于openssl的rsa加密解密示例

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php基于openssl的rsa加密解密示例脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP基于oPEnssl的rsa加密解密。分享给大家供大家参考,具体如下:

<PRe class="brush:PHp;"> "D:/PHPserver/Lighttpd/openssl.cnf",//'config' =>'D:/PHPStudy/Lighttpd/OpenSSL.cnf','private_key_bITs' => 1024,// Size of Key. 'private_key_type' => OPENSSL_KEYTYPE_RSA ); //$res = openssl_pkey_new(); $res = openssl_pkey_new($config); // Get private key // openssl_pkey_export($res,$privkey,"PassPhrase number 1" ); openssl_pkey_export($res,$privkey); var_dump($privkey); // Get public key $pubkey=openssl_pkey_get_details($res); // echo "------------>
"; // print_r($pubkey["rsa"]); // $bin_str=$pubkey["rsa"]["n"]; // print_r($bin_str); // echo "
"; // //echo $bin_hex_str = pack("H*",bin2hex($bin_str)); // echo $bin_hex_str = bin2hex($bin_str); // echo "
------------
"; $pubkey=$pubkey["key"]; // VAR_dump($privkey); // var_dump($pubkey); echo $privkey."

"; echo $pubkey."

"; ?>

脚本宝典总结

以上是脚本宝典为你收集整理的php基于openssl的rsa加密解密示例全部内容,希望文章能够帮你解决php基于openssl的rsa加密解密示例所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。