mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
age: Add Decryptor::new_buffered
This is significantly more efficient than `Decryptor::new` at parsing headers, due to avoiding repeated short reads.
This commit is contained in:
parent
15382946d3
commit
7ef416aaa3
8 changed files with 226 additions and 4 deletions
|
@ -34,3 +34,9 @@ path = "fuzz_targets/header.rs"
|
|||
[[bin]]
|
||||
name = "decrypt"
|
||||
path = "fuzz_targets/decrypt.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "decrypt_buffered"
|
||||
path = "fuzz_targets/decrypt_buffered.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
|
18
fuzz/fuzz_targets/decrypt_buffered.rs
Normal file
18
fuzz/fuzz_targets/decrypt_buffered.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
#![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(_) => (),
|
||||
}
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue