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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*!
This module contains structures for describing and interacting with HMAC
algorithms and tags.

Unlike the `compression` and `encryption` modules, there is not a `NoHMAC`
option, as the repository's structure does not make sense without an HMAC
algorithm.

As such, at least one HMAC algorithm feature must be enabled, or else you will
get a compile time error.
*/
#[cfg(feature = "blake2b_simd")]
use blake2b_simd::blake2bp;
#[cfg(feature = "blake2b_simd")]
use blake2b_simd::Params;
use cfg_if::cfg_if;
#[allow(unused_imports)]
use hmac::{Hmac, Mac, NewMac};
use serde::{Deserialize, Serialize};
#[cfg(feature = "sha2")]
use sha2::Sha256;
#[cfg(feature = "sha3")]
use sha3::Sha3_256;

use crate::repository::Key;

use std::cmp::min;

#[cfg(not(any(
    feature = "blake2b_simd",
    feature = "sha2",
    feature = "sha3",
    feature = "blake3"
)))]
compile_error!("Asuran requires at least one HMAC algorithim to be enabled.");

#[cfg(feature = "sha2")]
type HmacSha256 = Hmac<Sha256>;
#[cfg(feature = "sha3")]
type HmacSHA3 = Hmac<Sha3_256>;

/// Tag for the HMAC algorithim used by a particular `Chunk`
#[derive(Deserialize, Serialize, Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub enum HMAC {
    SHA256,
    Blake2b,
    Blake2bp,
    Blake3,
    SHA3,
}

impl HMAC {
    /// Produces an HMAC for the given data with the given key, using the algorithm
    /// specified by the variant of `self`.
    ///
    /// # Panics
    ///
    /// Will panic if the user attempts to produce an HMAC using an algorithm for which
    /// support was not compiled in.
    #[allow(unused_variables)]
    fn internal_mac(self, data: &[u8], key: &[u8]) -> Vec<u8> {
        match self {
            HMAC::SHA256 => {
                cfg_if! {
                    if #[cfg(feature = "sha2")] {
                        let mut mac = HmacSha256::new_from_slice(key)
                            .expect("HmacSHA256 was provided with a key of invalid length.");
                        mac.update(data);
                        mac.finalize().into_bytes().as_slice().to_vec()
                    } else {
                        unimplemented!("Asuran was not compiled with SHA2 support")
                    }
                }
            }
            HMAC::Blake2b => {
                cfg_if! {
                    if #[cfg(feature = "blake2b_simd")] {
                        Params::new()
                            .hash_length(64)
                            .key(key)
                            .hash(data)
                            .as_bytes()
                            .to_vec()
                    } else {
                        unimplemented!("Asuran was not compiled with BLAKE2b support")
                    }
                }
            }
            HMAC::Blake2bp => {
                cfg_if! {
                    if #[cfg(feature = "blake2b_simd")] {
                        blake2bp::Params::new()
                            .hash_length(64)
                            .key(key)
                            .hash(data)
                            .as_bytes()
                            .to_vec()
                    } else {
                        unimplemented!("Asuran was not compiled with BLAKE2b support")
                    }
                }
            }
            HMAC::Blake3 => {
                cfg_if! {
                    if #[cfg(feature = "blake3")] {
                        let mut tmp_key = [0_u8; 32];
                        let len = min(32, key.len());
                        tmp_key[..len].copy_from_slice(&key[..len]);
                        blake3::keyed_hash(&tmp_key, data).as_bytes().to_vec()
                    } else {
                        unimplemented!("Asuran was not compiled with BLAKE3 support")
                    }
                }
            }
            HMAC::SHA3 => {
                cfg_if! {
                    if #[cfg(feature = "sha3")] {
                        let mut mac = HmacSHA3::new_from_slice(key)
                            .expect("HmacSHA3 was provided with a key of invalid length.");
                        mac.update(data);
                        mac.finalize().into_bytes().as_slice().to_vec()
                    } else {
                        unimplemented!("Asuran was not compiled with SHA3 support")
                    }
                }
            }
        }
    }

    /// Produces an HMAC tag using the section of the key material reserved for
    /// integrity verification.
    ///
    /// # Panics
    ///
    /// Will panic if the user has selected an algorithm for which support has not been
    /// compiled in.
    pub fn mac(self, data: &[u8], key: &Key) -> Vec<u8> {
        let key = key.hmac_key();
        self.internal_mac(data, key)
    }

    /// Produces an HMAC tag using the section of the key material reserved for
    /// `ChunkID` generation.
    ///
    /// # Panics
    ///
    /// Will panic if the user has selected an algorithm for which support has not been
    /// compiled in.
    pub fn id(self, data: &[u8], key: &Key) -> Vec<u8> {
        let key = key.id_key();
        self.internal_mac(data, key)
    }

    /// Produces an HMAC for the supplied data, using the portion of the supplied key
    /// reserved for integrity verification, and the algorithm specified by the variant
    /// of `self`, and verifies it against the supplied HMAC, using constant time
    /// comparisons where possible.
    ///
    /// # Panics
    ///
    /// Panics if the user has selected an algorithm for which support has not been
    /// compiled in.
    #[allow(unused_variables)]
    pub fn verify_hmac(self, input_mac: &[u8], data: &[u8], key: &Key) -> bool {
        let key = key.hmac_key();
        match self {
            HMAC::SHA256 => {
                cfg_if! {
                    if #[cfg(feature = "sha2")] {
                        let mut mac = HmacSha256::new_from_slice(key)
                            .expect("HmacSHA256 was provided with a key of invalid length.");
                        mac.update(data);
                        let result = mac.verify(input_mac);
                        result.is_ok()
                    } else {
                        unimplemented!("Asuran was not compiled with SHA2 support")
                    }
                }
            }
            HMAC::Blake2b => {
                cfg_if! {
                    if #[cfg(feature = "blake2b_simd")] {
                        let hash = Params::new().hash_length(64).key(key).hash(data);
                        hash.eq(input_mac)
                    } else {
                        unimplemented!("Asuran was not compiled with BLAKE2b support")
                    }
                }
            }
            HMAC::Blake2bp => {
                cfg_if! {
                    if #[cfg(feature = "blake2b_simd")] {
                        let hash = blake2bp::Params::new().hash_length(64).key(key).hash(data);
                        hash.eq(input_mac)
                    } else {
                        unimplemented!("Asuran was not compiled with BLAKE2b support")
                    }
                }
            }
            HMAC::Blake3 => {
                cfg_if! {
                    if #[cfg(feature = "blake3")] {
                        let mut tmp_hash = [0_u8; 32];
                        tmp_hash.copy_from_slice(&input_mac[..32]);
                        let mut tmp_key = [0_u8; 32];
                        tmp_key.copy_from_slice(&key[..32]);
                        let input_hash = blake3::Hash::from(tmp_hash);
                        let output_hash = blake3::keyed_hash(&tmp_key, data);
                        output_hash.eq(&input_hash)
                    } else {
                        unimplemented!("Asuran was not compiled with BLAKE3 support")
                    }
                }
            }
            HMAC::SHA3 => {
                cfg_if! {
                    if #[cfg(feature = "sha3")] {
                        let mut mac = HmacSHA3::new_from_slice(key)
                            .expect("HmacSHA3 was provided with a key of invalid length");
                        mac.update(data);
                        let result = mac.verify(input_mac);
                        result.is_ok()
                    } else {
                        unimplemented!("Asuran was not compiled with SHA3 support")
                    }
                }
            }
        }
    }
}