下面代码的 perl 中创建自签名证书的等效示例是什么?
我所有可用的是 Crypt::OpenSSL::RSA (如果有另一个模块,请告诉我,以便我可以验证它是否可用或可以安装,因为我不是管理员/所有者并且由于权利问题而不能自己做)我还没有在有关如何实现此类的文档中找到...如果可能的话,我确实想避免使用命令行命令,但如果这是创建此命令的最后手段...
<?php
// The certificate password
$passphrase = "some random password";
// Fill in data for the distinguished name to be used in the cert
// You must change the values of these keys to match your name and
// company, or more precisely, the name and company of the person/site
// that you are generating the certificate for.
// 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.
$certificateInfo = array(
"countryName" => "UK",
"stateOrProvinceName" => "England",
"localityName" => "London",
"organizationName" => "blabla",
"organizationalUnitName" => "Bla bla Developer's Team",
"commonName" => "blabla.com",
"emailAddress" => "support@blabla.com"
);
$configargs = array(
'digest_alg' => 'sha1',
'private_key_bits' => 1024,
'private_key_type' => OPENSSL_KEYTYPE_RSA,
'encrypt_key' => true
);
// Generate a new private (and public) key pair
$privkey = null;
// Generate a certificate signing request
$csr = openssl_csr_new($certificateInfo, $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, $configargs);//, $configArgs
// Now you will want to preserve your private key, CSR and self-signed
// cert so that they can be installed into your web server, mail server
// or mail client (depending on the intended use of the certificate).
// This example shows how to get those things into variables, but you
// can also store them directly into files.
// Typically, you will send the CSR on to your CA who will then issue
// you with the "real" certificate.
openssl_csr_export($csr, $csrout);
openssl_x509_export($sscert, $certout);
openssl_pkey_export($privkey, $pkeyout, $passphrase);
?>