create certs

This commit is contained in:
Paul Trowbridge 2023-02-28 11:23:42 -05:00
parent 4c48ec93b2
commit 8c8d9a6013
1 changed files with 5 additions and 0 deletions

5
openssl.md Normal file
View File

@ -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`