mirror of https://github.com/CrimsonTome/tldr.git
Replace viewing a csr example with example for creating a self signed certificate.
parent
53c6ffe4cf
commit
4cbfcfdc0d
|
@ -10,9 +10,9 @@
|
||||||
|
|
||||||
`openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}`
|
`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:
|
- Display the certificate presented by an SSL/TLS server:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue