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
9
10
11
pub struct PanicHandler {
    pub is_decoy: bool,
}

impl PanicHandler {
    pub fn new(start_decoy: bool) -> Self {
        Self {
            is_decoy: start_decoy,
        }
    }
}