Difference between revisions of "Openssl"
From Wiki2
Line 23: | Line 23: | ||
openssl verify -verbose -CAFile ca.crt domain.crt | openssl verify -verbose -CAFile ca.crt domain.crt | ||
===== from https://www.feistyduck.com/library/openssl-cookbook/online/ch-openssl.html# ===== | |||
openssl genrsa -out fd.key 512 |
Revision as of 22:31, 19 January 2017
openssl
in cd ../vhosts/somecerts/smallcerts/
Generate a Private Key and a CSR
openssl req -newkey rsa:512 -nodes -keyout domain.key -out domain.csr
Generate a Self-Signed Certificate from an Existing Private Key
openssl req -key domain.key -new -x509 -days 365 -out domain.crt
View CSR Entries
openssl req -text -noout -verify -in domain.csr
View Certificate Entries
openssl x509 -text -noout -in domain.crt
Verify a Certificate was Signed by a CA
openssl verify -verbose -CAFile ca.crt domain.crt
from https://www.feistyduck.com/library/openssl-cookbook/online/ch-openssl.html#
openssl genrsa -out fd.key 512