ConFoo Montreal 2026: Call for Papers

Voting

: two plus two?
(Example: nine)

The Note You're Voting On

dankybastard at hotmail
20 years ago
You must also use the string representation of the certificate to get the public key resource:

$dn = array(); // use defaults
$res_privkey = openssl_pkey_new();
$res_csr = openssl_csr_new($dn, $res_privkey);
$res_cert = openssl_csr_sign($res_csr, null, $res_privkey, $ndays);

openssl_x509_export($res_cert, $str_cert);

$res_pubkey = openssl_pkey_get_public($str_cert);

<< Back to user notes page

To Top