sesame_cli 0.2.0

P2P encrypted chat with deniable authentication, panic mode, and multi-peer mesh
1
2
3
4
5
6
7
8
use std::time::Duration;

use rand::Rng;

pub fn dummy_interval() -> Duration {
    let secs = rand::thread_rng().gen_range(3..=7);
    Duration::from_secs(secs)
}