Reputation: 3021
When i use openssl to create a certificate for my website,who must verify my certificate? E.g : when you want login to yahoomail , your certificate verifies by DigiCert .
Upvotes: 1
Views: 151
Reputation: 9405
Information to be put on the certificate is verified by the trusted Certificate Authority (CA) on which almost all the browsers trust.
To get a certificate from a trusted CA, you need to submit a certificate signing request. After verification, CA will issue a certificate.
And it is the browser or client of SSL who actually verifies the certificate on the basis of trusted certificate available with it.
Upvotes: 1
Reputation: 673
Certificate which you created using open ssl is not trusted certificate.Submit the file ending in .csr to a commercial SSL provider for signing. You will receive a signed file after the CA signs the request.
You can vist
https://www.thawte.com/roots/index.html
https://knowledge.verisign.com/support/ssl-certificates-support/index.html
for root certificates
Upvotes: 1