0

I am trying to output the public EC key parameters Qx and Qy from OpenSSL CLI. Is this possible?

4

1 回答 1

5

您可以使用创建椭圆曲线键

openssl ecparam -out key.pem -name prime256v1 -genkey

输出公钥和私钥

openssl ec -inform PEM -in key.pem -pubout -text -noout

于 2013-04-11T01:44:16.730 回答