LLFourn / secp256kfun

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

Do some optimization of normal operations #117

Closed LLFourn closed 2 years ago

LLFourn commented 2 years ago

Some operations can be done faster if we know a point is Normal (e.g. addition). This demonstrates that we can specialize operations without using nightly features (nightly specialization was removed in #111).