From 04e85c552cb61fbb761c67af45ea1db0f04eb0b0 Mon Sep 17 00:00:00 2001 From: Michael Schlapa Date: Tue, 17 Mar 2020 23:01:23 +0100 Subject: [PATCH] OpenSSL fixes --- OpenSSL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSSL.md b/OpenSSL.md index ef1cc6f..e04ef34 100644 --- a/OpenSSL.md +++ b/OpenSSL.md @@ -36,13 +36,13 @@ openssl req -out signing_request.csr -key private_key.key -new openssl x509 -x509toreq -in certificate.crt -out signing_request.csr -signkey private_key.key ``` -### Encrypt a Private Key +### Encrypt a (RSA) private key ``` openssl rsa -des3 -in unencrypted.key -out encrypted.key ``` -### Decrypt a Private Key +### Decrypt a (RSA) private key ``` openssl rsa -in encrypted.key -out decrypted.key