From d0c6a55538fd9fb5ad8012eaed422870497a0b44 Mon Sep 17 00:00:00 2001 From: Jeremy Dubois Date: Tue, 22 Mar 2022 18:08:57 +0100 Subject: [PATCH] README file and show_usage function : replace "cert" with "certificate" --- README.md | 8 ++++---- shellpki | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 745d3fb..1d3022a 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ cipher AES-256-GCM Usage: shellpki [options] [CommonName] ~~~ -Initialize PKI (create CA key and self-signed cert) : +Initialize PKI (create CA key and self-signed certificate) : ~~~ shellpki init @@ -73,13 +73,13 @@ Initialize PKI (create CA key and self-signed cert) : --non-interactive do not prompt the user, and exit if an error occurs ~~~ -Create a client cert with key and CSR directly generated on server : +Create a client certificate with key and CSR directly generated on server : ~~~ shellpki create Options - -f, --file, --csr-file create a client cert from a CSR (doesn't need key) + -f, --file, --csr-file create a client certificate from a CSR (doesn't need key) -p, --password prompt the user for a password to set on the client key --password-file if provided with a path to a readable file, the first line is read and set as password on the client key --days specify how many days the certificate should be valid @@ -88,7 +88,7 @@ Create a client cert with key and CSR directly generated on server : --replace-existing if the certificate already exists, revoke it before creating a new one ~~~ -Revoke a client cert : +Revoke a client certificate : ~~~ shellpki revoke diff --git a/shellpki b/shellpki index 695f6ae..55bec09 100755 --- a/shellpki +++ b/shellpki @@ -32,19 +32,19 @@ show_usage() { cat < [options] [CommonName] -Initialize PKI (create CA key and self-signed cert) : +Initialize PKI (create CA key and self-signed certificate) : ${0} init Options --non-interactive do not prompt the user, and exit if an error occurs -Create a client cert with key and CSR directly generated on server : +Create a client certificate with key and CSR directly generated on server : ${0} create Options - -f, --file, --csr-file create a client cert from a CSR (doesn't need key) + -f, --file, --csr-file create a client certificate from a CSR (doesn't need key) -p, --password prompt the user for a password to set on the client key --password-file if provided with a path to a readable file, the first line is read and set as password on the client key --days specify how many days the certificate should be valid @@ -52,7 +52,7 @@ Create a client cert with key and CSR directly generated on server : --non-interactive do not prompt the user, and exit if an error occurs --replace-existing if the certificate already exists, revoke it before creating a new one -Revoke a client cert : +Revoke a client certificate : ${0} revoke