|
/Admin/SSH-SSL:
OpenSSL Cheat Sheet
Extract information from a certificate:
openssl x509 -text -in /path/to/certificate.pem
Create a new self-signed certificate good for ten years:
openssl req -new -x509 -days 3650 -nodes -out /etc/ssl/certs/new-certificate.pem \
-keyout /etc/ssl/private/new-key.pem
References:
http://www.madboa.com/geek/openssl/
posted at: 23:07 | path: /Admin/SSH-SSL | permanent link to this entry