From bc6d0b89bcc959e20b6a5387d9d6e96a55210cff Mon Sep 17 00:00:00 2001 From: Emii Tatsuo Date: Mon, 30 Nov 2020 17:48:19 -0500 Subject: [PATCH] Make it clearer that kochab handles certificate generation --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 78536fe..f923469 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,8 @@ kochab = { git = "https://gitlab.com/Alch_Emi/kochab.git", branch = "kochab" } # Generating a key & certificate -By default, kochab enables the `certgen` feature, which will automatically generate a certificate for you. All you need to do is run the program once and follow the prompts printed to stdout. You can override this behavior by disabling the feature, or by using the methods in the `Builder`. +By default, kochab enables the `certgen` feature, which will **automatically generate a certificate** for you. All you need to do is run the program once and follow the prompts printed to stdout. You can override this behavior by disabling the feature, or by using the methods in the `Builder`. -If you want to generate a certificate manually, you can use the command: - -```sh -mkdir cert && cd cert -openssl req -x509 -nodes -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -``` +If you want to generate a certificate manually, it's recommended that you temporarily enable the `certgen` feature to do it, and then disable it once you're done, although you can also use the `openssl` client tool if you wish [northstar]: https://github.com/panicbit/northstar "Northstar GitHub"