mirror of
https://github.com/str4d/rage.git
synced 2025-04-06 20:37:41 +03:00
16 lines
389 B
Rust
16 lines
389 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
use age::Decryptor;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
if let Ok(decryptor) = Decryptor::new(data) {
|
|
match decryptor {
|
|
Decryptor::Recipients(d) => {
|
|
let _ = d.decrypt(&[]);
|
|
}
|
|
// Don't pay the cost of scrypt while fuzzing.
|
|
Decryptor::Passphrase(_) => ()
|
|
}
|
|
}
|
|
});
|