I am curious why the secret types in this crate do not implement ZeroizeOnDrop if there is a lot of emphasis on not leaking the secret data? I recently read the security audit for crypto_box and noticed that one of the things the security firm checked was whether or not unused data was zeroized away so I figure this crate should do that too.
I am curious why the secret types in this crate do not implement ZeroizeOnDrop if there is a lot of emphasis on not leaking the secret data? I recently read the security audit for
crypto_boxand noticed that one of the things the security firm checked was whether or not unused data was zeroized away so I figure this crate should do that too.