Answers for "generate crt and key openssl"

1

generate crt and key openssl

openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
  -keyout example.key -out example.crt -subj "/CN=example.com" \
  -addext "subjectAltName=DNS:example.com,DNS:www.example.net,IP:10.0.0.1"
Posted by: Guest on August-25-2021

Code answers related to "generate crt and key openssl"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language