From 015203f67787f7af1b600955e60b8612ead3e938 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Fri, 23 Feb 2024 15:27:10 -0500 Subject: [PATCH] update readme --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index da43a8d..b39a67b 100644 --- a/README.md +++ b/README.md @@ -10,20 +10,22 @@ for use in testing. `self-signed-cert` generates the four (4) files needed to test a single client/server scenario: -* root CA certificate, and private key -* server certificate, and private key +1. Root CA certificate +2. Root CA private key +3. Server certificate +4. Server private key Optionally, the server cert request (CSR) may also be generated. Many options exist to tweak certificate settings. _All CLI options are -optional_. The program designed to do the right thing by default. +optional_. The program designed to do the right thing by default, with +zero configuration. ## Example invocation ``` -$ cargo run - Finished dev [unoptimized + debuginfo] target(s) in 0.03s - Running `target/debug/self-signed-cert` +$ self-signed-cert + $ ls *.pem ca-cert.pem ca-key.pem server-cert.pem server-key.pem ```