We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#[zeroize(drop)]
Drop
enum
#[zeroize(drop)] doesn't implement Drop for enums
zeroize_derive
0.7.0
>=1.1.1
Affected versions of this crate did not implement Drop when #[zeroize(drop)] was used on an enum.
This can result in memory not being zeroed out after dropping it, which is exactly what is intended when adding this attribute.
The flaw was corrected in version 1.2 and #[zeroize(drop)] on enums now properly implements Drop.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
zeroize_derive
0.7.0
>=1.1.1
Affected versions of this crate did not implement
Drop
when#[zeroize(drop)]
was used on anenum
.This can result in memory not being zeroed out after dropping it, which is exactly what is intended when adding this attribute.
The flaw was corrected in version 1.2 and
#[zeroize(drop)]
onenum
s now properly implementsDrop
.See advisory page for additional details.
The text was updated successfully, but these errors were encountered: