dongpangzan6425 2015-06-10 08:13 采纳率: 100%
浏览 199
已采纳

尝试使用PHP中的shell_exec通过openssl创建证书

I'm actually working in a small project for myself, is a Web Application that creates Certificate Signing Request also the certificate .pem/.crt and its .key.

The actual problem is that I'm trying to run:

shell_exec(openssl ca -config ../openssl.cnf -in $CSR_FILE -out $CRT_FILE)

And I find the problem that after running this command is asking for my CA passphrase, and later on answering Yes twice to accept the creation of the certificate. I can't figure it out how to make it work. I've been stuck with that for almost three days, neither Google or Stack Overflow has an anwser.

I've tried to run the command and add another shell_exec(passphrase) also, passing passphrase and "y" twice this way.

shell_exec("openssl....","passphrase","y","y")

Thank you very much, i appreciate all help.

  • 写回答

1条回答 默认 最新

  • dpvr49226 2015-08-08 06:12
    关注

    You don't have to use shell_exec() for this. You can create slef signed certificate by using openssl_csr_new() PHP function.

    It generates a new CSR (Certificate Signing Request) based on the information provided by dn, which represents the Distinguished Name to be used in the certificate.

    PHP Code to generate self-signed-certificate

    <?php 
    // For SSL certificates, the  commonName is usually the domain name of
    // that will be using the certificate, but for S/MIME certificates,
    // the commonName will be the name of the individual who will use the certificate.
    $dn = array(
        "countryName" => "UK",
        "stateOrProvinceName" => "Somerset",
        "localityName" => "Glastonbury",
        "organizationName" => "The Brain Room Limited",
        "organizationalUnitName" => "PHP Documentation Team",
        "commonName" => "Wez Furlong",
        "emailAddress" => "wez@example.com"
    );
    
    // Generate a new private (and public) key pair
    $privkey = openssl_pkey_new();
    
    // Generate a certificate signing request
    $csr = openssl_csr_new($dn, $privkey);
    
    // You will usually want to create a self-signed certificate at this
    // point until your CA fulfills your request.
    // This creates a self-signed cert that is valid for 365 days
    $sscert = openssl_csr_sign($csr, null, $privkey, 365);
    
    // Now you will want to preserve your private key, CSR and self-signed
    // cert so that they can be installed into your web server.
    
    openssl_csr_export($csr, $csrout) and var_dump($csrout);
    openssl_x509_export($sscert, $certout) and var_dump($certout);
    openssl_pkey_export($privkey, $pkeyout, "mypassword") and var_dump($pkeyout);
    
    // Show any errors that occurred here
    while (($e = openssl_error_string()) !== false) {
        echo $e . "
    ";
    }
    //save certificate and privatekey to file
    file_put_contents("certificate.cer", $certout);
    file_put_contents("privatekey.pem", $pkeyout);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值