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
#![no_std]
#![doc(html_logo_url =
"https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
extern crate subtle;
pub extern crate generic_array;
#[cfg(feature = "std")]
extern crate std;
#[cfg(feature = "dev")]
pub extern crate blobby;
use subtle::{Choice, ConstantTimeEq};
use generic_array::{GenericArray, ArrayLength};
use generic_array::typenum::Unsigned;
mod errors;
#[cfg(feature = "dev")]
pub mod dev;
pub use errors::{InvalidKeyLength, MacError};
pub trait Mac: Clone {
type OutputSize: ArrayLength<u8>;
type KeySize: ArrayLength<u8>;
fn new(key: &GenericArray<u8, Self::KeySize>) -> Self;
fn new_varkey(key: &[u8]) -> Result<Self, InvalidKeyLength> {
if key.len() != Self::KeySize::to_usize() {
Err(InvalidKeyLength)
} else {
Ok(Self::new(GenericArray::from_slice(key)))
}
}
fn input(&mut self, data: &[u8]);
fn reset(&mut self);
fn result(self) -> MacResult<Self::OutputSize>;
fn result_reset(&mut self) -> MacResult<Self::OutputSize> {
let res = self.clone().result();
self.reset();
res
}
fn verify(self, code: &[u8]) -> Result<(), MacError> {
let choice = self.result().code.ct_eq(code);
if choice.unwrap_u8() == 1 {
Ok(())
} else {
Err(MacError)
}
}
}
#[derive(Clone)]
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 }
}
pub fn code(self) -> GenericArray<u8, N> {
self.code
}
}
impl<N> ConstantTimeEq for MacResult<N> where N: ArrayLength<u8> {
fn ct_eq(&self, other: &Self) -> Choice {
self.code.ct_eq(&other.code)
}
}
impl<N> PartialEq for MacResult<N> where N: ArrayLength<u8> {
fn eq(&self, x: &MacResult<N>) -> bool {
self.ct_eq(x).unwrap_u8() == 1
}
}
impl<N> Eq for MacResult<N> where N: ArrayLength<u8> { }