Generate an ECDSA key and CSR with OpenSSL
I know how to generate an RSA Private Key and CSR:
openssl genrsa -out my.key.pem 2048
openssl req -new -sha256 -key my.key.pem -out my.csr
But, how do I do the same with an ECDSA (Elliptic Curve Digital Signature Algorithm)?
Solution 1:
For a list of possible curve names, run:
openssl ecparam -list_curves
Then, pick a curve from the list and replace your first line with:
openssl ecparam -name secp521r1 -genkey -noout -out my.key.pem
(replace secp521r1
with whichever curve you choose from the list)
Finally, generate the CSR as you have done:
openssl req -new -sha256 -key my.key.pem -out my.csr