Page 1 of 1

ECC Gen key pair Valid or Not

Posted: Wed Jun 13, 2018 11:22 am
by shimizus3106
Hello, member

I want to know how we can know,

Created ECC key pair ex) ECDSA Sign/Verity tool in this site

is compliant with the spec.

Simply, Secret key is random number and Public key is its scalar x G of EC parameter..

How we can consider the key is valid one ?

Could you let me know ?

thx

Re: ECC Gen key pair Valid or Not

Posted: Fri Jun 15, 2018 5:09 am
by zhaoyang
ECDSA sign/verify tool in this site can generate ECC key pair.D is private key, (Qx,Qy) is public key.
If you want to check ecc key pair is valid,you can follow the following steps:
1. You can use private key d to compute public key Q. Private key d multiplied by G in the elliptic curve can get private key Q'.
2.Compare the two point Q and Q'. If Q == Q', the keypair is valid in elliptic curve.