You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mdaxini edited this page Oct 30, 2014
·
2 revisions
Appendix B: Generating a self signed certificate.
SSL Certificate is actually an x509 Certificate, which is used during the TLS handshake process to provide authentication and asymetric encryption to exchange a symmetric key used for securing the data exchange.
Create the key (specify a passphrase for the key)
openssl genrsa -des3 -out server.key.pass 2048
Convert to an unencrypted key using passphrase from step 1.
openssl rsa -in server.key.pass -out server.key
Generate a CSR - Certificate Signing Request (leave passphrase blank)