zeroize: Relax Zeroize
trait bounds for Vec
#276
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This changes the trait bounds for the
Zeroize
impl onVec<Z>
from:to just:
This is based on my experience trying to switch
curve25519-dalek
fromclear_on_drop
tozeroize
in this PR:dalek-cryptography/curve25519-dalek#289
Notably there were several places I was unable to use
Zeroizing
in conjunction withVec
because it requiresClone
andDefault
in order for the current safe impl of zeroizing the excess capacity inVec
s. IMO this is an implementation detail leaking out which places undue burden on the user and reduces overall utility.This is another way of saying: this change effectively reverts #180. I think we can eventually bring this functionality back using an
unsafe
impl which writes zeroes to the excess capacity.In general my opinion is if you're storing secrets in
Vec
, it's best to avoid mutating thatVec
and causing reallocations in the first place. This is the goal of theSecretVec
type insecrecy
:https://docs.rs/secrecy/latest/secrecy/type.SecretVec.html