From 889dd387f15810f06350b36133f6a0fd9ee26514 Mon Sep 17 00:00:00 2001 From: Andreas Auernhammer Date: Fri, 9 Mar 2018 00:06:42 +0100 Subject: [PATCH] [doc] fix openssl command for ECDSA key generation (#5616) This change fixes the command for generating ECDSA private keys. The current command produces private key files which cannot be parsed by the server. Fixes #5614 --- docs/tls/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tls/README.md b/docs/tls/README.md index 7386b0429..be3daf512 100644 --- a/docs/tls/README.md +++ b/docs/tls/README.md @@ -37,7 +37,7 @@ go run generate_cert.go -ca --host "10.10.0.3" 1. **ECDSA:** ```sh -openssl ecparam -genkey -name prime256v1 -out private.key +openssl ecparam -genkey -name prime256v1 | openssl ec -out private.key ``` or protect the private key additionally with a password: ```sh