From 8581cbe504f822cae0017c8ab4395a469d51d7e3 Mon Sep 17 00:00:00 2001 From: aherst Date: Sat, 26 Dec 2020 13:11:55 -0500 Subject: [PATCH] Update openssl-req.md Hyphenated selfsigned. --- pages/common/openssl-req.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/openssl-req.md b/pages/common/openssl-req.md index 3c8759178ce001..6e7159915800c6 100644 --- a/pages/common/openssl-req.md +++ b/pages/common/openssl-req.md @@ -7,6 +7,6 @@ `openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}` -- Generate a selfsigned certificate and a corresponding keypair, storing both in a file: +- Generate a self-signed certificate and a corresponding keypair, storing both in a file: `openssl req -new -x509 -newkey {{rsa}}:{{4096}} -keyout {{filename.key}} -out {{filename.cert}} -subj "{{/C=XX/CN=foobar}}" -days {{365}}`