From 2f69da2a5ef77966a057ff139d442e9f14ca7083 Mon Sep 17 00:00:00 2001 From: Wei-Ting Kuo Date: Tue, 3 Feb 2015 22:42:26 +0800 Subject: [PATCH] Update certificates.md `openssl req -new -x509 -text -key client.key -out client.cert` creates a self-sign certificate but not a certificate request. Signed-off-by: Wei-Ting Kuo --- docs/sources/articles/certificates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/articles/certificates.md b/docs/sources/articles/certificates.md index e031676402..ebd606f385 100644 --- a/docs/sources/articles/certificates.md +++ b/docs/sources/articles/certificates.md @@ -45,7 +45,7 @@ Our example is set up like this: ## Creating the client certificates You will use OpenSSL's `genrsa` and `req` commands to first generate an RSA -key and then use the key to create the certificate request. +key and then use the key to create the certificate. $ openssl genrsa -out client.key 1024 $ openssl req -new -x509 -text -key client.key -out client.cert