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
#![no_std]
extern crate constant_time_eq;
extern crate generic_array;
use constant_time_eq::constant_time_eq;
use generic_array::{GenericArray, ArrayLength};
pub trait Mac: core::marker::Sized {
type OutputSize: ArrayLength<u8>;
fn new(key: &[u8]) -> Self;
fn input(&mut self, data: &[u8]);
fn result(self) -> MacResult<Self::OutputSize>;
fn verify(self, code: &[u8]) -> bool {
MacResult::from_slice(code) == self.result()
}
}
pub struct MacResult<N: ArrayLength<u8>> {
code: GenericArray<u8, N>
}
impl<N> MacResult<N> where N: ArrayLength<u8> {
pub fn new(code: GenericArray<u8, N>) -> MacResult<N> {
MacResult{code: code}
}
pub fn from_slice(code: &[u8]) -> MacResult<N> {
assert_eq!(code.len(), N::to_usize());
let mut arr = GenericArray::default();
arr.copy_from_slice(code);
MacResult{code: arr}
}
pub fn code(&self) -> &[u8] {
&self.code[..]
}
}
impl<N> PartialEq for MacResult<N> where N: ArrayLength<u8> {
fn eq(&self, x: &MacResult<N>) -> bool {
constant_time_eq(&self.code[..], &x.code[..])
}
}
impl<N> Eq for MacResult<N> where N: ArrayLength<u8> { }