【PHP】生成RSA公钥私钥

1、代码如下:

<?php
/**
* @description 创建RSA 公钥私钥
* @return array|bool
    */
function create_rsa_key(){
    //配置信息
    $config = array(
        'config' => 'C:/soft/php-7.4.22/extras/ssl/openssl.cnf',//找到你的PHP目录下openssl配置文件
        'digest_alg' => 'sha512',
        'private_key_bits' => 1024,//指定多少位来生成私钥
        'private_key_type' => OPENSSL_KEYTYPE_RSA
    );
    $res = openssl_pkey_new($config);
    //获取私钥
    openssl_pkey_export($res, $private_key, null, $config);
    //获取公钥
    $details = openssl_pkey_get_details($res);
    $public_key = $details['key'];

    return array('public_key' => $public_key, 'private_key' => $private_key);
}

?>

 

2、生成结果:

 

posted @ 2022-04-20 18:55  bug毁灭者  阅读(1595)  评论(0编辑  收藏  举报