Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am trying to output the public EC key parameters Qx and Qy from OpenSSL CLI. Is this possible?
您可以使用创建椭圆曲线键
openssl ecparam -out key.pem -name prime256v1 -genkey
输出公钥和私钥
openssl ec -inform PEM -in key.pem -pubout -text -noout