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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
const BLOCK_SIZE: usize = 128;
const RESULT_SIZE: usize = 64;
const STATE_SIZE: usize = 8;
const INIT_STATE: [u64; STATE_SIZE] = [0x6a09e667f3bcc908, 0xbb67ae8584caa73b, 0x3c6ef372fe94f82b, 0xa54ff53a5f1d36f1, 0x510e527fade682d1, 0x9b05688c2b3e6c1f, 0x1f83d9abfb41bd6b, 0x5be0cd19137e2179];
const K512: [u64; 80] = [
	0x428a2f98d728ae22, 0x7137449123ef65cd, 0xb5c0fbcfec4d3b2f, 0xe9b5dba58189dbbc,
	0x3956c25bf348b538, 0x59f111f1b605d019, 0x923f82a4af194f9b, 0xab1c5ed5da6d8118,
	0xd807aa98a3030242, 0x12835b0145706fbe, 0x243185be4ee4b28c, 0x550c7dc3d5ffb4e2,
	0x72be5d74f27b896f, 0x80deb1fe3b1696b1, 0x9bdc06a725c71235, 0xc19bf174cf692694,
	0xe49b69c19ef14ad2, 0xefbe4786384f25e3, 0x0fc19dc68b8cd5b5, 0x240ca1cc77ac9c65,
	0x2de92c6f592b0275, 0x4a7484aa6ea6e483, 0x5cb0a9dcbd41fbd4, 0x76f988da831153b5,
	0x983e5152ee66dfab, 0xa831c66d2db43210, 0xb00327c898fb213f, 0xbf597fc7beef0ee4,
	0xc6e00bf33da88fc2, 0xd5a79147930aa725, 0x06ca6351e003826f, 0x142929670a0e6e70,
	0x27b70a8546d22ffc, 0x2e1b21385c26c926, 0x4d2c6dfc5ac42aed, 0x53380d139d95b3df,
	0x650a73548baf63de, 0x766a0abb3c77b2a8, 0x81c2c92e47edaee6, 0x92722c851482353b,
	0xa2bfe8a14cf10364, 0xa81a664bbc423001, 0xc24b8b70d0f89791, 0xc76c51a30654be30,
	0xd192e819d6ef5218, 0xd69906245565a910, 0xf40e35855771202a, 0x106aa07032bbd1b8,
	0x19a4c116b8d2d0c8, 0x1e376c085141ab53, 0x2748774cdf8eeb99, 0x34b0bcb5e19b48a8,
	0x391c0cb3c5c95a63, 0x4ed8aa4ae3418acb, 0x5b9cca4f7763e373, 0x682e6ff3d6b2b8a3,
	0x748f82ee5defb2fc, 0x78a5636f43172f60, 0x84c87814a1f0ab72, 0x8cc702081a6439ec,
	0x90befffa23631e28, 0xa4506cebde82bde9, 0xbef9a3f7b2c67915, 0xc67178f2e372532b,
	0xca273eceea26619c, 0xd186b8c721c0c207, 0xeada7dd6cde0eb1e, 0xf57d4f7fee6ed178,
	0x06f067aa72176fba, 0x0a637dc5a2c898a6, 0x113f9804bef90dae, 0x1b710b35131c471b,
	0x28db77f523047d84, 0x32caab7b40c72493, 0x3c9ebe0a15c9bebc, 0x431d67c49c100d4c,
	0x4cc5d4becb3e42b6, 0x597f299cfc657e2a, 0x5fcb6fab3ad6faec, 0x6c44198c4a475817
];

const fn sha512_transform(state: [u64; STATE_SIZE], cursor: usize, input: &[u8]) -> [u64; STATE_SIZE] {
    let mut a = state[0];
    let mut b = state[1];
    let mut c = state[2];
    let mut d = state[3];
    let mut e = state[4];
    let mut f = state[5];
    let mut g = state[6];
    let mut h = state[7];

    macro_rules! S0 {
        ($in:expr) => {
            (($in.rotate_right(5) ^ $in).rotate_right(6) ^ $in).rotate_right(28)
        }
    }

    macro_rules! S1 {
        ($in:expr) => {
            (($in.rotate_right(23) ^ $in).rotate_right(4) ^ $in).rotate_right(14)
        }
    }

    macro_rules! s0 {
        ($in:expr) => {
            ($in.rotate_right(7) ^ $in).rotate_right(1) ^ $in.wrapping_shr(7)
        }
    }

    macro_rules! s1 {
        ($in:expr) => {
            ($in.rotate_right(42) ^ $in).rotate_right(19) ^ $in.wrapping_shr(6)
        }
    }

    macro_rules! Ch {
        ($x:expr, $y:expr, $z:expr) => {
            (($z) ^ (($x) & (($y) ^ ($z))))
        }
    }

    macro_rules! Ma {
        ($x:expr, $y:expr, $z:expr) => {
            ((($x) & ($y)) | (($z) & (($x) | ($y))))
        }
    }

    const fn read_u64(input: &[u8], cursor: usize) -> u64 {
        u64::from_be_bytes([input[cursor], input[cursor + 1], input[cursor + 2], input[cursor + 3], input[cursor + 4], input[cursor + 5], input[cursor + 6], input[cursor + 7]])
    }

    let mut x = [0u64; 80];
    let mut idx = 0;
    while idx < 16 {
        x[idx] = read_u64(input, cursor + idx * 8);
        idx += 1;
    }

    while idx < x.len() {
        x[idx] = s1!(x[idx - 2]).wrapping_add(x[idx - 7]).wrapping_add(s0!(x[idx - 15])).wrapping_add(x[idx - 16]);
        idx += 1;
    }

    macro_rules! R {
        ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr, $f:expr, $g:expr, $h:expr, $i:expr) => {
            $h = $h.wrapping_add(S1!($e).wrapping_add(Ch!($e, $f, $g)).wrapping_add(K512[$i]).wrapping_add(x[$i]));
            $d = $d.wrapping_add($h);
            $h = $h.wrapping_add(S0!($a).wrapping_add(Ma!($a, $b, $c)));
        }
    }

    idx = 0;
    while idx < 80 {
        R!(a, b, c, d, e, f, g, h, idx);
        R!(h, a, b, c, d, e, f, g, idx+1);
        R!(g, h, a, b, c, d, e, f, idx+2);
        R!(f, g, h, a, b, c, d, e, idx+3);
        R!(e, f, g, h, a, b, c, d, idx+4);
        R!(d, e, f, g, h, a, b, c, idx+5);
        R!(c, d, e, f, g, h, a, b, idx+6);
        R!(b, c, d, e, f, g, h, a, idx+7);

        idx += 8;
    }

    [
        state[0].wrapping_add(a),
        state[1].wrapping_add(b),
        state[2].wrapping_add(c),
        state[3].wrapping_add(d),
        state[4].wrapping_add(e),
        state[5].wrapping_add(f),
        state[6].wrapping_add(g),
        state[7].wrapping_add(h),
    ]
}

#[inline]
///const `SHA512` algorithm implementation
pub const fn sha512(input: &[u8]) -> [u8; RESULT_SIZE] {
    let mut state = INIT_STATE;
    let mut cursor = 0;

    while cursor + BLOCK_SIZE <= input.len() {
        state = sha512_transform(state, cursor, input);
        cursor += BLOCK_SIZE;
    }

    let mut pos = 0;
    let mut buffer = [0; BLOCK_SIZE];

    while pos < input.len() - cursor {
        buffer[pos] = input[cursor + pos];
        pos += 1;
    }
    buffer[pos] = 0x80;
    pos += 1;

    while pos != (BLOCK_SIZE - (2 * core::mem::size_of::<u64>())) {
        pos &= BLOCK_SIZE - 1;

        if pos == 0 {
            state = sha512_transform(state, 0, &buffer);
        }

        buffer[pos] = 0;
        pos += 1;
    }

    let input_len = input.len() as u64;
    let len_lo = input_len.wrapping_shl(3).to_be_bytes();
    let len_hi = input_len.wrapping_shr(64 - 3).to_be_bytes();
    buffer[pos] = len_hi[0];
    buffer[pos + 1] = len_hi[1];
    buffer[pos + 2] = len_hi[2];
    buffer[pos + 3] = len_hi[3];
    buffer[pos + 4] = len_hi[4];
    buffer[pos + 5] = len_hi[5];
    buffer[pos + 6] = len_hi[6];
    buffer[pos + 7] = len_hi[7];

    buffer[pos + 8] = len_lo[0];
    buffer[pos + 9] = len_lo[1];
    buffer[pos + 10] = len_lo[2];
    buffer[pos + 11] = len_lo[3];
    buffer[pos + 12] = len_lo[4];
    buffer[pos + 13] = len_lo[5];
    buffer[pos + 14] = len_lo[6];
    buffer[pos + 15] = len_lo[7];

    state = sha512_transform(state, 0, &buffer);

    let a = state[0].to_be_bytes();
    let b = state[1].to_be_bytes();
    let c = state[2].to_be_bytes();
    let d = state[3].to_be_bytes();
    let e = state[4].to_be_bytes();
    let f = state[5].to_be_bytes();
    let g = state[6].to_be_bytes();
    let h = state[7].to_be_bytes();
    [
        a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7],
        b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7],
        c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7],
        d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7],
        e[0], e[1], e[2], e[3], e[4], e[5], e[6], e[7],
        f[0], f[1], f[2], f[3], f[4], f[5], f[6], f[7],
        g[0], g[1], g[2], g[3], g[4], g[5], g[6], g[7],
        h[0], h[1], h[2], h[3], h[4], h[5], h[6], h[7],
    ]
}

///`Sha512` algorithm implementation
pub struct Sha512 {
    state: [u64; STATE_SIZE],
    len: u64,
    buffer: [u8; BLOCK_SIZE],
}


impl Sha512 {
    ///Creates new instance
    pub const fn new() -> Self {
        Self {
            state: INIT_STATE,
            len: 0,
            buffer: [0; BLOCK_SIZE]
        }
    }

    ///Resets algorithm's state.
    pub fn reset(&mut self) {
        *self = Self::new();
    }

    ///Hashes input
    pub const fn const_update(mut self, input: &[u8]) -> Self {
        let num = (self.len & (BLOCK_SIZE as u64 - 1)) as usize;
        self.len += input.len() as u64;

        let mut cursor = 0;

        if num > 0 {
            let block_num = BLOCK_SIZE - num;

            if input.len() < block_num {
                let mut idx = 0;
                while idx < input.len() {
                    self.buffer[num + idx] = input[idx];
                    idx += 1;
                }
                return self;
            }

            let mut idx = 0;
            while idx < block_num {
                self.buffer[num + idx] = input[idx];
                idx += 1;
            }
            self.state = sha512_transform(self.state, 0, &self.buffer);
            cursor += block_num
        }

        while input.len() - cursor >= BLOCK_SIZE {
            self.state = sha512_transform(self.state, cursor, input);
            cursor += BLOCK_SIZE;
        }

        let remains = input.len() - cursor;
        let mut idx = 0;
        while idx < remains {
            self.buffer[idx] = input[cursor + idx];
            idx += 1;
        }

        self
    }

    ///Hashes input
    pub fn update(&mut self, input: &[u8]) {
        let mut num = (self.len & (BLOCK_SIZE as u64 - 1)) as usize;
        self.len += input.len() as u64;

        let mut cursor = 0;

        if num > 0 {
            let buffer = &mut self.buffer[num..];
            num = BLOCK_SIZE - num;

            if input.len() < num {
                buffer[..input.len()].copy_from_slice(input);
                return;
            }

            buffer.copy_from_slice(&input[..num]);
            self.state = sha512_transform(self.state, 0, &self.buffer);
            cursor += num;
        }

        while input.len() - cursor >= BLOCK_SIZE {
            self.state = sha512_transform(self.state, cursor, input);
            cursor += BLOCK_SIZE;
        }

        let remains = input.len() - cursor;
        if remains > 0 {
            self.buffer[..remains].copy_from_slice(&input[cursor..]);
        }
    }

    ///Finalizes algorithm, returning the hash.
    pub const fn const_result(mut self) -> [u8; RESULT_SIZE] {
        let mut pos = (self.len & (BLOCK_SIZE as u64 - 1)) as usize;

        self.buffer[pos] = 0x80;
        pos += 1;

        while pos != (BLOCK_SIZE - (2 * core::mem::size_of::<u64>())) {
            pos &= BLOCK_SIZE - 1;

            if pos == 0 {
                self.state = sha512_transform(self.state, 0, &self.buffer);
            }

            self.buffer[pos] = 0;
            pos += 1;
        }

        let len_lo = self.len.wrapping_shl(3).to_be_bytes();
        let len_hi = self.len.wrapping_shr(64 - 3).to_be_bytes();

        self.buffer[pos] = len_hi[0];
        self.buffer[pos + 1] = len_hi[1];
        self.buffer[pos + 2] = len_hi[2];
        self.buffer[pos + 3] = len_hi[3];
        self.buffer[pos + 4] = len_hi[4];
        self.buffer[pos + 5] = len_hi[5];
        self.buffer[pos + 6] = len_hi[6];
        self.buffer[pos + 7] = len_hi[7];

        self.buffer[pos + 8] = len_lo[0];
        self.buffer[pos + 9] = len_lo[1];
        self.buffer[pos + 10] = len_lo[2];
        self.buffer[pos + 11] = len_lo[3];
        self.buffer[pos + 12] = len_lo[4];
        self.buffer[pos + 13] = len_lo[5];
        self.buffer[pos + 14] = len_lo[6];
        self.buffer[pos + 15] = len_lo[7];

        self.state = sha512_transform(self.state, 0, &self.buffer);

        let a = self.state[0].to_be_bytes();
        let b = self.state[1].to_be_bytes();
        let c = self.state[2].to_be_bytes();
        let d = self.state[3].to_be_bytes();
        let e = self.state[4].to_be_bytes();
        let f = self.state[5].to_be_bytes();
        let g = self.state[6].to_be_bytes();
        let h = self.state[7].to_be_bytes();
        [
            a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7],
            b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7],
            c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7],
            d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7],
            e[0], e[1], e[2], e[3], e[4], e[5], e[6], e[7],
            f[0], f[1], f[2], f[3], f[4], f[5], f[6], f[7],
            g[0], g[1], g[2], g[3], g[4], g[5], g[6], g[7],
            h[0], h[1], h[2], h[3], h[4], h[5], h[6], h[7],
        ]
    }

    ///Finalizes algorithm, returning the hash.
    pub fn result(&mut self) -> [u8; RESULT_SIZE] {
        let mut pos = (self.len & (BLOCK_SIZE as u64 - 1)) as usize;

        self.buffer[pos] = 0x80;
        pos += 1;

        while pos != (BLOCK_SIZE - (2 * core::mem::size_of::<u64>())) {
            pos &= BLOCK_SIZE - 1;

            if pos == 0 {
                self.state = sha512_transform(self.state, 0, &self.buffer);
            }

            self.buffer[pos] = 0;
            pos += 1;
        }

        let len_lo = self.len.wrapping_shl(3).to_be_bytes();
        let len_hi = self.len.wrapping_shr(64 - 3).to_be_bytes();

        self.buffer[pos] = len_hi[0];
        self.buffer[pos + 1] = len_hi[1];
        self.buffer[pos + 2] = len_hi[2];
        self.buffer[pos + 3] = len_hi[3];
        self.buffer[pos + 4] = len_hi[4];
        self.buffer[pos + 5] = len_hi[5];
        self.buffer[pos + 6] = len_hi[6];
        self.buffer[pos + 7] = len_hi[7];

        self.buffer[pos + 8] = len_lo[0];
        self.buffer[pos + 9] = len_lo[1];
        self.buffer[pos + 10] = len_lo[2];
        self.buffer[pos + 11] = len_lo[3];
        self.buffer[pos + 12] = len_lo[4];
        self.buffer[pos + 13] = len_lo[5];
        self.buffer[pos + 14] = len_lo[6];
        self.buffer[pos + 15] = len_lo[7];

        self.state = sha512_transform(self.state, 0, &self.buffer);

        let a = self.state[0].to_be_bytes();
        let b = self.state[1].to_be_bytes();
        let c = self.state[2].to_be_bytes();
        let d = self.state[3].to_be_bytes();
        let e = self.state[4].to_be_bytes();
        let f = self.state[5].to_be_bytes();
        let g = self.state[6].to_be_bytes();
        let h = self.state[7].to_be_bytes();
        [
            a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7],
            b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7],
            c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7],
            d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7],
            e[0], e[1], e[2], e[3], e[4], e[5], e[6], e[7],
            f[0], f[1], f[2], f[3], f[4], f[5], f[6], f[7],
            g[0], g[1], g[2], g[3], g[4], g[5], g[6], g[7],
            h[0], h[1], h[2], h[3], h[4], h[5], h[6], h[7],
        ]
    }
}

impl super::Digest for Sha512 {
    type OutputType = [u8; RESULT_SIZE];
    type BlockType = [u8; BLOCK_SIZE];

    #[inline(always)]
    fn new() -> Self {
        Self::new()
    }

    #[inline(always)]
    fn reset(&mut self) {
        self.reset();
    }

    #[inline(always)]
    fn update(&mut self, input: &[u8]) {
        self.update(input);
    }

    #[inline(always)]
    fn result(&mut self) -> Self::OutputType {
        self.result()
    }
}

#[cfg(test)]
mod tests {
    extern crate alloc;

    use alloc::string::{String, ToString};

    use super::*;

    fn digest_to_hex(input: [u8; RESULT_SIZE]) -> String {
        crate::DigestFmt(input).to_string()
    }

    #[test]
    fn test_simple() {
        let tests = [
            ("", "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e"),
            ("abc", "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f"),
            ("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", "204a8fc6dda82f0a0ced7beb8e08a41657c16ef468b228a8279be331a703c33596fd15c13b1b07f9aa1d3bea57789ca031ad85c7a71dd70354ec631238ca3445"),
            ("abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", "8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909"),
            ("abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstuabcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", "b1179d83245119c98bd9b5f813a1df5594850c7afeebb4574ad6b3e0e6fcf700b3373ee3084170c1d33a4193d8bcf1dc3005decb5d75a6c2785056a3e7fed643"),
        ];

        let mut hasher = Sha512::new();
        let mut chunked = Sha512::new();
        for (data, ref expected) in tests.iter() {
            let data = data.as_bytes();

            let mut chunked_const = Sha512::new();
            hasher.update(data);
            for chunk in data.chunks(25) {
                chunked.update(chunk);
                chunked_const = chunked_const.const_update(chunk);
            }

            let hash = digest_to_hex(hasher.result());
            let chunked_hash = digest_to_hex(chunked.result());
            let const_hash = digest_to_hex(super::sha512(data));
            let const_chunked_hash = digest_to_hex(chunked_const.const_result());
            let const_hash_stateful = digest_to_hex(Sha512::new().const_update(data).const_result());

            assert_eq!(const_hash.len(), hash.len());
            assert_eq!(hash, *expected);
            assert_eq!(const_hash, *expected);
            assert_eq!(hash, chunked_hash);
            assert_eq!(hash, const_chunked_hash);
            assert_eq!(hash, const_hash_stateful);

            hasher.reset();
            chunked.reset();
        }
    }

    #[test]
    fn test_hmac() {
        let tests: [(&'static [u8], &'static [u8], &'static str); 5] = [
            (&[0x0B; 20], b"Hi There", "87aa7cdea5ef619d4ff0b4241a1d6cb02379f4e2ce4ec2787ad0b30545e17cdedaa833b7d6b8a702038b274eaea3f4e4be9d914eeb61f1702e696c203a126854"),
            (b"Jefe", b"what do ya want for nothing?", "164b7a7bfcf819e2e395fbe73b56e0a387bd64222e831fd610270cd7ea2505549758bf75c05a994a6d034f65f8f0e6fdcaeab1a34d4a6b4b636e070a38bce737"),
            (&[0xAA; 20], &[0xDD; 50], "fa73b0089d56a284efb0f0756c890be9b1b5dbdd8ee81a3655f83e33b2279d39bf3e848279a722c806b485a47e67c807b946a337bee8942674278859e13292fb"),
            (&[0xAA; 131], b"Test Using Larger Than Block-Size Key - Hash Key First", "80b24263c7c1a3ebb71493c1dd7be8b49b46d1f41b4aeec1121b013783f8f3526b56d037e05f2598bd0fd2215d6a1e5295e64f73f63f0aec8b915a985d786598"),
            (&[0xAA; 131], b"This is a test using a larger than block-size key and a larger than block-size data. The key needs to be hashed before being used by the HMAC algorithm.", "e37b6a775dc87dbaa4dfa9f96e5e3ffddebd71f8867289865df5a32d20cdc944b6022cac3c4982b10d5eeb55c3e4de15134676fb6de0446065c97440fa8c6a58"),
        ];

        for (key, data, ref expected) in tests.iter() {
            let hash = crate::hmac::<Sha512>(data, key);
            let hash = digest_to_hex(hash);

            assert_eq!(hash, *expected);
        }
    }
}