aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.rs
blob: 54f4801b359d00b4de4c7612123ffb002226d120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
use std::fmt;
use std::sync::Mutex;
use std::error::Error;

use x25519_dalek::PublicKey;
use x25519_dalek::SharedSecret;

use generic_array::typenum::U32;
use generic_array::GenericArray;

use crate::timestamp;

// config error

#[derive(Debug)]
pub struct ConfigError(String);

impl ConfigError {
    pub fn new(s : &str) -> Self {
        ConfigError(s.to_string())
    }
}

impl fmt::Display for ConfigError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "ConfigError({})", self.0)
    }
}

impl Error for ConfigError {
    fn description(&self) -> &str {
        &self.0
    }

    fn source(&self) -> Option<&(dyn Error + 'static)> {
        None
    }
}

// handshake error

#[derive(Debug)]
pub struct HandshakeError {}

impl HandshakeError {
    pub fn new() -> Self {
        HandshakeError{}
    }
}

impl fmt::Display for HandshakeError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "HandshakeError")
    }
}

impl Error for HandshakeError {
    fn description(&self) -> &str {
        "Generic Handshake Error"
    }

    fn source(&self) -> Option<&(dyn Error + 'static)> {
        None
    }
}

// types for resulting key-material

struct Key {
    key : [u8; 32],
    id  : u32
}

pub struct KeyPair {
    confimed : bool, // has the key-pair been confirmed?
    send     : Key,  // key for outbound messages
    recv     : Key   // key for inbound messages
}

pub struct Output (
    Option<KeyPair>, // resulting key-pair of successful handshake
    Option<Vec<u8>>  // message to send
);

// per-peer state machine

pub type Psk = [u8; 32];

pub struct Peer {
    // mutable state
    pub state : Mutex<State>,

    // constant state
    pub pk    : PublicKey,     // public key of peer
    pub ss    : SharedSecret,  // precomputed DH(static, static)
    pub psk   : Psk            // psk of peer
}

pub enum State {
    Reset{
        ts : Option<timestamp::TAI64N>
    },
    InitiationSent{
        hs : GenericArray<u8, U32>,
        ck : GenericArray<u8, U32>
    },
}