I am using the following openssl command to generate an ECC key for SECp384:
openssl ecparam -genkey -name secp384r1 -out private.pem
Can someone please let me know how to extract ephemeral(k) and static(k) private keys from generated ecc private key using openssl?
In the link https://www.ietf.org/rfc/rfc4754.txt these are mentioned as w
and k
.