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
Zeroizeimpl onVec<Z>from:to just:
This is based on my experience trying to switch
curve25519-dalekfromclear_on_droptozeroizein this PR:dalek-cryptography/curve25519-dalek#289
Notably there were several places I was unable to use
Zeroizingin conjunction withVecbecause it requiresCloneandDefaultin order for the current safe impl of zeroizing the excess capacity inVecs. 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
unsafeimpl 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 thatVecand causing reallocations in the first place. This is the goal of theSecretVectype insecrecy:https://docs.rs/secrecy/latest/secrecy/type.SecretVec.html