ZenGo-X / multi-party-ecdsa

Rust implementation of {t,n}-threshold ECDSA (elliptic curve digital signature algorithm).
GNU General Public License v3.0
966 stars 309 forks source link

Remove zeroize once num-bigint supports zeroization on drop #148

Closed tmpfs closed 2 years ago

tmpfs commented 2 years ago

The zeroize library is currently required for range_proofs.rs because BigInt from the num-bigint backend does not yet support zeroization on drop, once support is added to num-bigint the zeroize dependency can be completely removed.

Original discussion is here.

survived commented 2 years ago

Closing per discussion in separate thread