Jump to content

Verify SSL Certificates using Openssl


virenajmera

Recommended Posts

I am working on below things:

  1. Generate CSR(Certificate Signing Request)
  2. 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 :happy-04:

 

Eagerly waiting for the reply :happy-04: .

 

Thanks,

Viren Ajmera

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.