Bug fix: derive Arbitrary for ZipCryptoKeys

This commit is contained in:
Chris Hennick 2023-05-08 19:07:42 -07:00
parent 6c4ae5333a
commit b179709639
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -9,6 +9,7 @@ use std::hash::{Hash, Hasher};
use std::num::Wrapping; use std::num::Wrapping;
/// A container to hold the current key state /// A container to hold the current key state
#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary))]
#[derive(Clone, Copy, Hash, Ord, PartialOrd, Eq, PartialEq)] #[derive(Clone, Copy, Hash, Ord, PartialOrd, Eq, PartialEq)]
pub(crate) struct ZipCryptoKeys { pub(crate) struct ZipCryptoKeys {
key_0: Wrapping<u32>, key_0: Wrapping<u32>,