mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-01-05 01:28:10 -08:00
22 lines
550 B
Rust
22 lines
550 B
Rust
#![no_main]
|
|
extern crate rosenpass;
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
use rosenpass::protocol::CryptoServer;
|
|
use rosenpass_secret_memory::Secret;
|
|
use rosenpass_sodium::init as sodium_init;
|
|
|
|
fuzz_target!(|rx_buf: &[u8]| {
|
|
sodium_init().unwrap();
|
|
|
|
let sk = Secret::from_slice(&[0; 13568]);
|
|
let pk = Secret::from_slice(&[0; 524160]);
|
|
|
|
let mut cs = CryptoServer::new(sk, pk);
|
|
let mut tx_buf = [0; 10240];
|
|
|
|
// We expect errors while fuzzing therefore we do not check the result.
|
|
let _ = cs.handle_msg(rx_buf, &mut tx_buf);
|
|
});
|