mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-01-03 00:31:15 -08:00
10 lines
192 B
Rust
10 lines
192 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use rosenpass_secret_memory::alloc::secret_vec;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
let mut vec = secret_vec();
|
|
vec.extend_from_slice(data);
|
|
});
|