mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-20 14:32:36 -08:00
9 lines
157 B
Rust
9 lines
157 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use rosenpass_secret_memory::alloc::secret_box;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
let _ = secret_box(data);
|
|
});
|