witty/tls
Zhi Wang 01a98b3cf7 reset the GitHub Repo 2022-01-28 21:25:15 -05:00
..
README.md reset the GitHub Repo 2022-01-28 21:25:15 -05:00

README.md

Past lesson shows that a test cert hurts security (because people just use it). Follow the steps below to create a self-sigend ECC cert by yourself.

# generate a private key for a curve
openssl ecparam -name prime256v1 -genkey -noout -out private-key.pem

# Create a self-signed certificate
openssl req -new -x509 -key private-key.pem -out cert.pem -days 360