Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

Thursday, 20 March 2014

Open SSL Certificate for Https Implementation


 Self signed Open SSL Certificate:
  -To Implement Https on any webpage, first we need SSL certificate. This SSL certificate have multiple extension format like ( .pem, .key, .crt  etc)
-To register SSL certificate or to get self signed SSL certificate, we need to generate Self signed SSL key by using following commands in command prompt console.
openssl genrsa -out sample.key 4096
            openssl req -new -x509 -days 365 -key sample.key -out sample.crt
In the above command days 365 represents certificate validity period.while generating certificate you must provide following details,