replace url and paths

waldyrious/alt-syntax
Duologic 2015-12-30 19:32:23 +01:00
parent 878265f7ff
commit 832bf8006c
1 changed files with 8 additions and 8 deletions

View File

@ -4,20 +4,20 @@
- Check an SSL connection
`openssl s_client -connect www.paypal.com:443`
`openssl s_client -connect {{url}}:443`
- Generate new private key and CSR
`openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key`
`openssl req -out {{path/to/CSR.csr}} -new -newkey rsa:2048 -nodes -keyout {{path/to/pivate.key}}`
- Read contents of certificate, private key and CSR file
`openssl x509 -text -noout -in certificate.crt`
`openssl rsa -check -in privateKey.key`
`openssl req -text -noout -verify -in CSR.csr`
`openssl x509 -text -noout -in {{path/to/certificate.crt}}`
`openssl rsa -check -in {{path/to/pivate.key}}`
`openssl req -text -noout -verify -in {{path/to/CSR.csr}}`
- Check if certificate, private key and CSR have the same MD5 hash
`openssl x509 -noout -modulus -in certificate.crt | openssl md5`
`openssl rsa -noout -modulus -in privateKey.key | openssl md5`
`openssl req -noout -modulus -in CSR.csr | openssl md5`
`openssl x509 -noout -modulus -in {{path/to/certificate.crt}} | openssl md5`
`openssl rsa -noout -modulus -in {{path/to/pivate.key}} | openssl md5`
`openssl req -noout -modulus -in {{path/to/CSR.csr}} | openssl md5`