BreadCrumbs: OpenSSL

OpenSSL

From Luke Jackson

(Difference between revisions)
Jump to: navigation, search
Revision as of 04:24, 14 July 2008 (edit)
Ljackson (Talk | contribs)

← Previous diff
Revision as of 04:27, 14 July 2008 (edit)
Ljackson (Talk | contribs)

Next diff →
Line 28: Line 28:
openssl x509 -req -days 730 -in server.csr -signkey server.key -out server.crt openssl x509 -req -days 730 -in server.csr -signkey server.key -out server.crt
- 
Verify contents of certificate: Verify contents of certificate:

Revision as of 04:27, 14 July 2008

Generate Self-Signed Certificate

Create a RSA private key for your CA (will be Triple-DES encrypted and PEM formatted)

openssl genrsa -des3 -out server.key 1024

You can see the details of this RSA private key via the command:

openssl rsa -noout -text -in ca.key

Create a Certificate Signing Request (CSR) with the server RSA private key (output will be PEM formatted):

openssl req -new -key server.key -out server.csr

You can see the details of this CSR via the command

openssl req -noout -text -in server.csr 

You can create a decrypted PEM version (not recommended) of this private key via:

openssl rsa -in ca.key -out ca.key.unsecure

If you want to run apache without a password rename it correctly:

mv server.unsecure server.key

Generate apache mod_ssl certificate:

openssl x509 -req -days 730 -in server.csr -signkey server.key -out server.crt

Verify contents of certificate:

openssl x509 -noout -text -in server.crt


Sources

Personal tools