Openssl command to generate NIST key pair for ECDSA P384 curve

79 Views Asked by At

Need to know is the command secp384r1 in openssl generates ECDSA key pair based on ECCNIST or ECCSEC standard?

I am using the below command for generating the ECDSA p384 key pair.

openssl ecparam -name secp384r1 -genkey -noout -out private-key.pem
openssl ec -in private-key.pem -pubout -out public-key.pem

Does the command secp384r1 generates keys based on NIST standard or SEC standard? If it is for SEC standard then what is openssl command to generate ECDSA p384 keys in NIST standard?

0

There are 0 best solutions below