Skip to content

Instantly share code, notes, and snippets.

@stokito
Last active October 26, 2023 07:55
Show Gist options
  • Save stokito/2e931f9e95ecb00f7a541202579456c3 to your computer and use it in GitHub Desktop.
Save stokito/2e931f9e95ecb00f7a541202579456c3 to your computer and use it in GitHub Desktop.
Generate self signed cert with ECC elyptic curve and wildcard domain
# 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