virenajmera Posted November 25, 2013 Share Posted November 25, 2013 I am working on below things: Generate CSR(Certificate Signing Request) Upload SSL Certificates To generate SSL certificate I am using something like: $privkey = openssl_pkey_new(); $csr = openssl_csr_new($dn, $privkey); $sscert = openssl_csr_sign($csr, null, $privkey, $days); openssl_csr_export($csr, $csrout); openssl_pkey_export($privkey, $pkeyout, $_POST['password']); openssl_pkey_export_to_file($privkey, "<path/to/store/server.key>"); openssl_csr_export_to_file($csr, "/tmp/".<domain-name>.".csr"); Now using CSR request, I am able to generate <domain-name.cer>,<DigitalCert.cer>. Now once I upload this(.cer) certificates, I need to verify those certificates. Reason: Someone generated these certificates on say "a.com" and tries to upload on "b.com". this should not happen, so I want to validate the uploaded SSL certificates. In PHP, we have $ok = openssl_verify($data, $signature, $pubkeyid); but i am not able to get what things would be treated as $data, $signature and $pubkeyid based on the above certificate generation process. Please help me on this. Sample code will be really appreciated Eagerly waiting for the reply . Thanks, Viren Ajmera Link to comment https://forums.phpfreaks.com/topic/284244-verify-ssl-certificates-using-openssl/ Share on other sites More sharing options...
neubert Posted November 30, 2013 Share Posted November 30, 2013 Seems like you've had a good number of answers on stackoverflow: http://stackoverflow.com/q/20207985/569976 It also seems like you've ignored some of those answers - ie. mine Link to comment https://forums.phpfreaks.com/topic/284244-verify-ssl-certificates-using-openssl/#findComment-1460765 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.