mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
This is significantly more efficient than `Decryptor::new` at parsing headers, due to avoiding repeated short reads.
18 lines
425 B
Rust
18 lines
425 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
use std::iter;
|
|
|
|
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(_) => (),
|
|
}
|
|
}
|
|
});
|