feat: Migrate to memsec

This commit is contained in:
Karolin Varner
2023-12-27 16:57:30 +01:00
committed by wucke13
parent b2a64ed17a
commit 85c447052e
16 changed files with 258 additions and 155 deletions

View File

@@ -0,0 +1,8 @@
#![no_main]
use libfuzzer_sys::fuzz_target;
use rosenpass_secret_memory::alloc::secret_box;
fuzz_target!(|data: &[u8]| {
let _ = secret_box(data);
});