From 8c8d9a60131d808705c3854952d9b56b991312ed Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 28 Feb 2023 11:23:42 -0500 Subject: [PATCH] create certs --- openssl.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 openssl.md diff --git a/openssl.md b/openssl.md new file mode 100644 index 0000000..94801d3 --- /dev/null +++ b/openssl.md @@ -0,0 +1,5 @@ +to create a self-signed certificate and bypass supplying a password (using the `-nodes` option) +this will also create a crt file that can be used to install to as a trusted root certificate authority + `openssl req -x509 -newkey rsa:2048 -keyout privateKey.pem -out certificate.crt -days 365 -nodes` + +