GenericArrays are used extensively in RustCrypto stack, and it would be very convenient to have them implement zeroization (for the cases when they contain secret data), so that one didn't have to make and expose a newtype doing that. This is done with the help of the de-facto standard zeroize crate.
This functionality is optional and gated on the zeroize feature.
GenericArray
s are used extensively in RustCrypto stack, and it would be very convenient to have them implement zeroization (for the cases when they contain secret data), so that one didn't have to make and expose a newtype doing that. This is done with the help of the de-facto standardzeroize
crate.This functionality is optional and gated on the
zeroize
feature.