aboutsummaryrefslogtreecommitdiffstats
path: root/libblake_internal_blake2xb_init0.c
blob: 66b80dcbac5fad3635f65774aa639396dc4252be (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
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
/* See LICENSE file for copyright and license details. */
#include "common.h"

#if UINT_LEAST64_MAX == UINT64_MAX
# if defined(LITTLE_ENDIAN)
#  define le64(X) X
# else
static uint_least64_t
le64(uint_least64_t h)
{
	unsigned char r[8];
	r[0] = (unsigned char)((h >>  0) & 255);
	r[1] = (unsigned char)((h >>  8) & 255);
	r[2] = (unsigned char)((h >> 16) & 255);
	r[3] = (unsigned char)((h >> 24) & 255);
	r[4] = (unsigned char)((h >> 32) & 255);
	r[5] = (unsigned char)((h >> 40) & 255);
	r[6] = (unsigned char)((h >> 48) & 255);
	r[7] = (unsigned char)((h >> 56) & 255);
	return *(uint_least64_t *)r;
}
# endif

# define ALIGNED_U64(X, I) ((const uint_least64_t *)(const unsigned char *)(X))[I]
# define UNALIGNED_U64(X, I) load64(&((const unsigned char *)(X))[I * sizeof(const uint_least64_t)])
static uint_least64_t
load64(const unsigned char *data)
{
	uint_least64_t h = 0;
	memcpy(&h, data, 8);
	return h;
}
#endif

void
libblake_internal_blake2xb_init0(struct libblake_blake2xb_state *state, const struct libblake_blake2xb_params *params)
{
	state->b2b.h[0] = UINT_LEAST64_C(0x6A09E667F3BCC908);
	state->b2b.h[1] = UINT_LEAST64_C(0xBB67AE8584CAA73B);
	state->b2b.h[2] = UINT_LEAST64_C(0x3C6EF372FE94F82B);
	state->b2b.h[3] = UINT_LEAST64_C(0xA54FF53A5F1D36F1);
	state->b2b.h[4] = UINT_LEAST64_C(0x510E527FADE682D1);
	state->b2b.h[5] = UINT_LEAST64_C(0x9B05688C2B3E6C1F);
	state->b2b.h[6] = UINT_LEAST64_C(0x1F83D9ABFB41BD6B);
	state->b2b.h[7] = UINT_LEAST64_C(0x5BE0CD19137E2179);

	state->b2b.t[0] = 0;
	state->b2b.t[1] = 0;
	state->b2b.f[0] = 0;
	state->b2b.f[1] = 0;

#if UINT_LEAST64_MAX == UINT64_MAX
	if (CODE_KILLER(offsetof(struct libblake_blake2xb_params, inner_len) == 17)) {
# if defined(__clang__)
#  pragma clang diagnostic push
#  pragma clang diagnostic ignored "-Wcast-align"
# endif
		state->b2b.h[0] ^= le64(ALIGNED_U64(params, 0));
		state->b2b.h[1] ^= le64(ALIGNED_U64(params, 1));
		state->b2b.h[2] ^= le64(((uint_least64_t)params->node_depth << 0) |
		                        ((uint_least64_t)params->inner_len << 8));
		/* unlike BLAKE2b, BLAKE2Xb does not align .salt and .pepper to 64-bits, but 32-bits */
		state->b2b.h[4] ^= le64(UNALIGNED_U64(params->salt, 0));
		state->b2b.h[5] ^= le64(UNALIGNED_U64(params->salt, 1));
		state->b2b.h[6] ^= le64(UNALIGNED_U64(params->pepper, 0));
		state->b2b.h[7] ^= le64(UNALIGNED_U64(params->pepper, 1));
# if defined(__clang__)
#  pragma clang diagnostic pop
# endif
	} else {
#endif
		state->b2b.h[0] ^= ((uint_least64_t)params->digest_len & 255) << 0;
		state->b2b.h[0] ^= ((uint_least64_t)params->key_len & 255) << 8;
		state->b2b.h[0] ^= ((uint_least64_t)params->fanout & 255) << 16;
		state->b2b.h[0] ^= ((uint_least64_t)params->depth & 255) << 24;
		state->b2b.h[0] ^= (uint_least64_t)(params->leaf_len & UINT_LEAST32_C(0xFFFFffff)) << 32;
		state->b2b.h[1] ^= (uint_least64_t)(params->node_offset & UINT_LEAST32_C(0xFFFFffff)) << 0;
		state->b2b.h[1] ^= (uint_least64_t)(params->xof_len & UINT_LEAST32_C(0xFFFFffff)) << 32;
		state->b2b.h[2] ^= ((uint_least64_t)params->node_depth & 255) << 0;
		state->b2b.h[2] ^= ((uint_least64_t)params->inner_len & 255) << 8;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[0] & 255) << 0;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[1] & 255) << 8;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[2] & 255) << 16;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[3] & 255) << 24;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[4] & 255) << 32;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[5] & 255) << 40;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[6] & 255) << 48;
		state->b2b.h[4] ^= ((uint_least64_t)params->salt[7] & 255) << 56;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[8] & 255) << 0;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[9] & 255) << 8;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[A] & 255) << 16;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[B] & 255) << 24;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[C] & 255) << 32;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[D] & 255) << 40;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[E] & 255) << 48;
		state->b2b.h[5] ^= ((uint_least64_t)params->salt[F] & 255) << 56;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[0] & 255) << 0;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[1] & 255) << 8;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[2] & 255) << 16;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[3] & 255) << 24;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[4] & 255) << 32;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[5] & 255) << 40;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[6] & 255) << 48;
		state->b2b.h[6] ^= ((uint_least64_t)params->pepper[7] & 255) << 56;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[8] & 255) << 0;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[9] & 255) << 8;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[A] & 255) << 16;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[B] & 255) << 24;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[C] & 255) << 32;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[D] & 255) << 40;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[E] & 255) << 48;
		state->b2b.h[7] ^= ((uint_least64_t)params->pepper[F] & 255) << 56;
#if UINT_LEAST64_MAX == UINT64_MAX
	}
#endif
}