fuzz: Fix targets

This commit is contained in:
Jack Grigg 2024-11-03 10:38:19 +00:00
parent 597f1aa05f
commit 25e050362c
2 changed files with 2 additions and 14 deletions

View file

@ -7,12 +7,6 @@ use age::Decryptor;
fuzz_target!(|data: &[u8]| {
if let Ok(decryptor) = Decryptor::new(data) {
match decryptor {
Decryptor::Recipients(d) => {
let _ = d.decrypt(iter::empty());
}
// Don't pay the cost of scrypt while fuzzing.
Decryptor::Passphrase(_) => (),
}
let _ = decryptor.decrypt(iter::empty());
}
});

View file

@ -7,12 +7,6 @@ use age::Decryptor;
fuzz_target!(|data: &[u8]| {
if let Ok(decryptor) = Decryptor::new_buffered(data) {
match decryptor {
Decryptor::Recipients(d) => {
let _ = d.decrypt(iter::empty());
}
// Don't pay the cost of scrypt while fuzzing.
Decryptor::Passphrase(_) => (),
}
let _ = decryptor.decrypt(iter::empty());
}
});