Create a Certificate for SSL (HTTPS)
openssl req -newkey rsa:4096 \
-x509 \
-sha256 \
-days 3650 \
-nodes \
-out example.crt \
-keyout example.key
These notes document the trouble resolution of various items pertaining to Linux or it's applications. This blog also notes alternative open source applications and how they work.
openssl req -newkey rsa:4096 \
-x509 \
-sha256 \
-days 3650 \
-nodes \
-out example.crt \
-keyout example.key
https://www.youtube.com/watch?v=-i7ugO8AVN4
ReplyDeleteCreate a PFX cert file: openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt
ReplyDelete