starkware-libs / starkex-resources

Apache License 2.0
82 stars 42 forks source link

ecdsa library optimization #15

Open cliff0412 opened 2 years ago

cliff0412 commented 2 years ago

i notic that starkware is not using the secp256k1 curve.

however, i compared the ecdsa sign to bitcoin library secp256k1, it is much slower. libsecp256k1 only takes 85 micro per iteration.

after some digging, the current implementation does not adopt the jacobian coordinates as in libsecp256k1.

any plan to optimize that?