ZenGo-X / curv

Rust language general purpose elliptic curve cryptography.
MIT License
264 stars 111 forks source link

Unify & optimise bigint serialization #139

Closed survived closed 2 years ago

survived commented 2 years ago

Serialization is implemented as conversion to bytes for both num-bigint & gmp backends. It used to convert bigint to hex/decimal representation which is more expensive for communication size.

Closes #138 Closes #118