LLFourn / secp256kfun

A pure-rust secp256k1 library optimised for fun
BSD Zero Clause License
101 stars 29 forks source link

Point addition is slower with the nightly feature #82

Closed LLFourn closed 1 year ago

LLFourn commented 2 years ago

I investigated it and it's because we're doing a is_identity check which is actually doing a normalization behind the scenes.

LLFourn commented 1 year ago

This will be fixed by #117 which will make point addition specialize again (without the nightly feature).