filecoin-project / bls-signatures

BLS Signatures in Rust
Other
74 stars 44 forks source link

Zero-out value before drop #74

Open palozano opened 10 months ago

palozano commented 10 months ago

The PrivateKeys created with bls-signatures do not implement .zeroize() (see Zeroize) to ensure dropped values do not contain information after they are out scope, and sensistive information cannot be accessed.

Is there a possibility this could be implemented for PrivateKey?