1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:53:11 +02:00

Replace viewing a csr example with example for creating a self signed certificate.

This commit is contained in:
Peter Tripp 2016-01-22 14:03:08 -08:00
parent 53c6ffe4cf
commit 4cbfcfdc0d

View file

@ -10,9 +10,9 @@
`openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}`
- Read contents of a signed certificate:
- Generate a self-signed certificate from a certificate signing request valid for some number of days:
`openssl x509 -text -noout -in {{certificate.crt}}`
`openssl x509 -req -days {{days}} -in {{filename.csr}} -signkey {{filename.key}} -out {{filename.crt}}`
- Display the certificate presented by an SSL/TLS server: