From 066f845d52713d723a0b078fe3e6919e76115ecd Mon Sep 17 00:00:00 2001 From: inference Date: Tue, 30 May 2023 00:37:41 +0100 Subject: [PATCH] Fix intermediate certificate authority key filename. --- security/openssl_certificate_chain.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/openssl_certificate_chain.adoc b/security/openssl_certificate_chain.adoc index f722540..8814e43 100644 --- a/security/openssl_certificate_chain.adoc +++ b/security/openssl_certificate_chain.adoc @@ -1,6 +1,6 @@ = OpenSSL Certificate Chain -Version: 0.0.0.4 +Version: 0.0.0.5 This documentation contains the complete set of commands to create a new OpenSSL self-signed @@ -28,7 +28,7 @@ Each key can be encrypted or unencrypted, with multiple encryption options; AES `openssl genrsa -aes256 -out intermediate-key.pem 4096` == Verify Intermediate Certificate Authority Key -`openssl rsa -noout -text -in ca-key.pem` +`openssl rsa -noout -text -in intermediate-key.pem` == Create Intermediate Certificate Signing Request `openssl req -new -sha256 -key intermediate-key.pem -out intermediate-csr.pem`