Created
August 25, 2022 14:37
-
-
Save DiegoRBaquero/fb58d014e34839d64b8850e8f2a8f88e to your computer and use it in GitHub Desktop.
OpenSSL Generate Key, CSR and Self-Signed Cert (256 bit ECDSA)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl ecparam -name prime256v1 -genkey -noout -out local.key | |
openssl req -new -sha256 -key local.key -out local.csr | |
openssl x509 -req -days 365 -sha256 -in local.csr -signkey local.key -out local.crt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment