Last active
October 26, 2023 07:55
-
-
Save stokito/2e931f9e95ecb00f7a541202579456c3 to your computer and use it in GitHub Desktop.
Generate self signed cert with ECC elyptic curve and wildcard domain
This file contains 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
# You can use smaller curve prime256v1 | |
openssl req -x509 -new -newkey ec -pkeyopt ec_paramgen_curve:secp384r1 -days 3650 -noenc -keyout example.com.privkey.p8 -out example.com.cer -subj "/CN=example.com" -addext "subjectAltName=DNS:example.com,DNS:*.example.com" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment