LLFourn / secp256kfun

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

Add assignment operators #120

Closed LLFourn closed 1 year ago

LLFourn commented 1 year ago

I implemented assignment operators since they are annoying to do with the g! and s! macros. After doing this I realized why I had avoided it before: it requires so many different implementations to get it to cover all possible cases.

Addresses part of #116.