diff --git a/neqo-crypto/src/aead_fuzzing.rs b/neqo-crypto/src/aead_fuzzing.rs index 3f062eff5e..1699f31dfd 100644 --- a/neqo-crypto/src/aead_fuzzing.rs +++ b/neqo-crypto/src/aead_fuzzing.rs @@ -21,11 +21,13 @@ pub struct FuzzingAead { impl FuzzingAead { #[cfg(feature = "disable-encryption")] + #[allow(clippy::missing_errors_doc)] pub fn new(_version: Version, _cipher: Cipher, _secret: &SymKey, _prefix: &str) -> Res { Ok(Self { real: None }) } #[cfg(not(feature = "disable-encryption"))] + #[allow(clippy::missing_errors_doc)] pub fn new(version: Version, cipher: Cipher, secret: &SymKey, prefix: &str) -> Res { Ok(Self { real: Some(RealAead::new(version, cipher, secret, prefix)?),