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
pub const KEY_LENGTH: usize = 32;
pub const BLOCK_LENGTH: usize = 16;

pub trait Prf {
    // TODO
    //  https://github.com/rust-lang/rust/issues/44247
    //  https://github.com/rust-lang/rust/issues/44168
    // const KEY_LENGTH: usize;
    // const BLOCK_LENGTH: usize;

    fn new(key: &[u8; KEY_LENGTH]) -> Self;
    fn prf(&self, data: &mut [u8; BLOCK_LENGTH]);
}

pub trait Hash: Default {
    // const RESULT_LENGTH: usize;

    fn update(&mut self, input: &[u8]);
    fn result(&mut self, output: &mut [u8; KEY_LENGTH]);
}

pub trait Time {
    /// Must be milliseconds time accuracy
    fn now(&self) -> u64;
}