From 2a867fc09b579193bc9bf028f369bbb8514ed981 Mon Sep 17 00:00:00 2001 From: Gozie Joshua <36326251+guzzit@users.noreply.github.com> Date: Thu, 4 Jan 2024 09:24:59 +0100 Subject: [PATCH] Fixed command typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bcb1bdf..13fe6fd 100644 --- a/README.md +++ b/README.md @@ -395,7 +395,7 @@ You can generate the keys by executing openssl command. ```sh # Generate a new private key. Keygen bits must be 2048 or more. -openssl openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -out private.pem +openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -out private.pem # Generate a public key from the private key. openssl pkey -in private.pem -pubout -out public.pem @@ -795,7 +795,7 @@ You can generate the keys by executing openssl command. ```sh # Generate a new private key. Keygen bits must be 2048 or more. -openssl openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -out private.pem +openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -out private.pem # Generate a public key from the private key. openssl pkey -in private.pem -pubout -out public.pem