blob: c4b126cf4de1ea440a28bbe98911e14326bdbf9e (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libblake_blake2s_init(struct libblake_blake2s_state *state, const struct libblake_blake2s_params *params, const unsigned char *key)
{
state->h[0] = UINT_LEAST32_C(0x6A09E667);
state->h[1] = UINT_LEAST32_C(0xBB67AE85);
state->h[2] = UINT_LEAST32_C(0x3C6EF372);
state->h[3] = UINT_LEAST32_C(0xA54FF53A);
state->h[4] = UINT_LEAST32_C(0x510E527F);
state->h[5] = UINT_LEAST32_C(0x9B05688C);
state->h[6] = UINT_LEAST32_C(0x1F83D9AB);
state->h[7] = UINT_LEAST32_C(0x5BE0CD19);
state->t[0] = 0;
state->t[1] = 0;
state->f[0] = 0;
state->f[1] = 0;
state->h[0] ^= ((uint_least32_t)params->digest_len & 255) << 0;
state->h[0] ^= ((uint_least32_t)params->key_len & 255) << 8;
state->h[0] ^= ((uint_least32_t)params->fanout & 255) << 16;
state->h[0] ^= ((uint_least32_t)params->depth & 255) << 24;
state->h[1] ^= params->leaf_len & UINT_LEAST32_C(0xFFFFffff);
state->h[2] ^= (uint_least32_t)((params->node_offset >> 0) & UINT_LEAST64_C(0xFFFFffff));
state->h[3] ^= (uint_least32_t)((params->node_offset >> 32) & UINT_LEAST64_C(0xFFFF)) << 0;
state->h[3] ^= ((uint_least32_t)params->node_depth & 255) << 16;
state->h[3] ^= ((uint_least32_t)params->inner_len & 255) << 24;
state->h[4] ^= ((uint_least32_t)params->salt[0] & 255) << 0;
state->h[4] ^= ((uint_least32_t)params->salt[1] & 255) << 8;
state->h[4] ^= ((uint_least32_t)params->salt[2] & 255) << 16;
state->h[4] ^= ((uint_least32_t)params->salt[3] & 255) << 24;
state->h[5] ^= ((uint_least32_t)params->salt[4] & 255) << 0;
state->h[5] ^= ((uint_least32_t)params->salt[5] & 255) << 8;
state->h[5] ^= ((uint_least32_t)params->salt[6] & 255) << 16;
state->h[5] ^= ((uint_least32_t)params->salt[7] & 255) << 24;
state->h[6] ^= ((uint_least32_t)params->pepper[0] & 255) << 0;
state->h[6] ^= ((uint_least32_t)params->pepper[1] & 255) << 8;
state->h[6] ^= ((uint_least32_t)params->pepper[2] & 255) << 16;
state->h[6] ^= ((uint_least32_t)params->pepper[3] & 255) << 24;
state->h[7] ^= ((uint_least32_t)params->pepper[4] & 255) << 0;
state->h[7] ^= ((uint_least32_t)params->pepper[5] & 255) << 8;
state->h[7] ^= ((uint_least32_t)params->pepper[6] & 255) << 16;
state->h[7] ^= ((uint_least32_t)params->pepper[7] & 255) << 24;
if (params->key_len) {
state->t[0] = 32;
libblake_internal_blake2s_compress(state, key);
}
}
|