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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
use ::hmac::{Hmac, Mac, NewMac};
use std::{
cmp::min,
ops::DerefMut,
sync::{Arc, Mutex},
};
use tink_core::TinkError;
use tink_proto::HashType;
const MIN_HMAC_KEY_SIZE_IN_BYTES: usize = 16;
#[derive(Clone)]
pub struct HmacPrf {
mac: Arc<Mutex<HmacPrfVariant>>,
mac_size: usize,
}
enum HmacPrfVariant {
Sha1(Hmac<sha1::Sha1>),
Sha256(Hmac<sha2::Sha256>),
Sha384(Hmac<sha2::Sha384>),
Sha512(Hmac<sha2::Sha512>),
}
impl HmacPrf {
pub fn new(hash_alg: HashType, key: &[u8]) -> Result<HmacPrf, TinkError> {
let mac = match hash_alg {
HashType::Sha1 => HmacPrfVariant::Sha1(
Hmac::<sha1::Sha1>::new_varkey(key)
.map_err(|_| TinkError::new("HmacPrf: invalid key size"))?,
),
HashType::Sha256 => HmacPrfVariant::Sha256(
Hmac::<sha2::Sha256>::new_varkey(key)
.map_err(|_| TinkError::new("HmacPrf: invalid key size"))?,
),
HashType::Sha384 => HmacPrfVariant::Sha384(
Hmac::<sha2::Sha384>::new_varkey(key)
.map_err(|_| TinkError::new("HmacPrf: invalid key size"))?,
),
HashType::Sha512 => HmacPrfVariant::Sha512(
Hmac::<sha2::Sha512>::new_varkey(key)
.map_err(|_| TinkError::new("HmacPrf: invalid key size"))?,
),
h => return Err(format!("HmacPrf: unsupported hash {:?}", h).into()),
};
let mac_size = match &mac {
HmacPrfVariant::Sha1(_) => 20,
HmacPrfVariant::Sha256(_) => 32,
HmacPrfVariant::Sha384(_) => 48,
HmacPrfVariant::Sha512(_) => 64,
};
Ok(HmacPrf {
mac: Arc::new(Mutex::new(mac)),
mac_size,
})
}
}
pub fn validate_hmac_prf_params(hash: HashType, key_size: usize) -> Result<(), TinkError> {
if key_size < MIN_HMAC_KEY_SIZE_IN_BYTES {
Err("key too short".into())
} else if tink_core::subtle::get_hash_func(hash).is_none() {
Err("invalid hash function".into())
} else {
Ok(())
}
}
impl tink_core::Prf for HmacPrf {
fn compute_prf(&self, data: &[u8], output_length: usize) -> Result<Vec<u8>, TinkError> {
if output_length > self.mac_size {
return Err(format!(
"HmacPrf: output_length must be between 0 and {}",
self.mac_size
)
.into());
}
Ok(
match self
.mac
.lock()
.expect("internal lock corrupted")
.deref_mut()
{
HmacPrfVariant::Sha1(mac) => {
mac.update(data);
let result = mac.finalize_reset().into_bytes();
result[..min(result.len(), output_length)].to_vec()
}
HmacPrfVariant::Sha256(mac) => {
mac.update(data);
let result = mac.finalize_reset().into_bytes();
result[..min(result.len(), output_length)].to_vec()
}
HmacPrfVariant::Sha384(mac) => {
mac.update(data);
let result = mac.finalize_reset().into_bytes();
result[..min(result.len(), output_length)].to_vec()
}
HmacPrfVariant::Sha512(mac) => {
mac.update(data);
let result = mac.finalize_reset().into_bytes();
result[..min(result.len(), output_length)].to_vec()
}
},
)
}
}