poanetwork / threshold_crypto

A pairing-based threshold cryptosystem for collaborative decryption and signatures used in HoneybadgerBFT implementation
Other
191 stars 72 forks source link

Make serialization less wasteful. #64

Closed afck closed 6 years ago

afck commented 6 years ago

This removes the unneeded length from key and signature representation, removing 8 bytes from each. Also adds from_bytes and to_bytes methods to convert keys and signatures.

Closes #63.