From 21c9dcc633eb9f87dd254cb208371e4fda60cc4b Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Tue, 19 Jan 2016 00:22:33 +0200 Subject: [PATCH] openssl: linting --- pages/common/openssl.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/common/openssl.md b/pages/common/openssl.md index 969d3ebec5..c5dcbf97e3 100644 --- a/pages/common/openssl.md +++ b/pages/common/openssl.md @@ -2,34 +2,34 @@ > OpenSSL is a cryptography toolkit. -- Check an SSL connection +- Check an SSL connection: `openssl s_client -connect {{domain}}:{{port}}` -- Generate new private key and CSR +- Generate new private key and CSR: `openssl req -out {{path/to/CSR.csr}} -new -newkey rsa:2048 -nodes -keyout {{path/to/pivate.key}}` -- Read contents of a certificate +- Read contents of a certificate: `openssl x509 -text -noout -in {{path/to/certificate.crt}}` -- Read contents of a private key +- Read contents of a private key: `openssl rsa -check -in {{path/to/pivate.key}}` -- Verify a CSR file +- Verify a CSR file: `openssl req -text -noout -verify -in {{path/to/CSR.csr}}` -- Check MD5 hash of a certificate +- Check MD5 hash of a certificate: `openssl x509 -noout -modulus -in {{path/to/certificate.crt}} | openssl md5` -- Check MD5 hash of a private key +- Check MD5 hash of a private key: `openssl rsa -noout -modulus -in {{path/to/pivate.key}} | openssl md5` -- Check MD5 hash of a CSR file +- Check MD5 hash of a CSR file: `openssl req -noout -modulus -in {{path/to/CSR.csr}} | openssl md5`