php使用openssl生成公钥私钥

1、确保你的 PHP 环境已经启用了 OpenSSL 扩展

    $config = array(
        "digest_alg" => "sha1",
        "private_key_bits" => 1024,
        "private_key_type" => OPENSSL_KEYTYPE_RSA,
        "config" => 'C:\phpstudy_pro\Extensions\Apache2.4.39\conf\openssl.cnf',
    );
    // 创建一个新的私钥和公钥对
    $res = openssl_pkey_new($config);
    // 检查是否成功生成密钥对
    if ($res === false) {
        die("无法生成密钥对:" . openssl_error_string());
    }

    // 提取私钥
    openssl_pkey_export($res, $privateKey, NULL, $config); // <-- CONFIG ARRAY

    // 生成公钥
    $publicKey = openssl_pkey_get_details($res);
    $publicKey = $publicKey["key"];
    echo "私钥:<br/>" . $privateKey . "<br/>";
    echo "公钥:<br/>" . $publicKey . "<br/>";

    // 释放资源
    openssl_free_key($res);

2、使用 OpenSSL 命令生成 公钥和私钥

1. 生成 1024 位 RSA 私钥
  openssl genpkey -algorithm RSA -out private_key.pem -pkeyopt rsa\_keygen\_bits:1024
2. 从私钥中提取公钥
 openssl rsa -pubout -in private_key.pem -out public\_key.pem
posted @ 2024-03-14 12:26  成文的博客  阅读(241)  评论(0编辑  收藏  举报