blob: d7b891ccfb7933a347c0e2bace65a9de9a2ef5cb (
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
static void
encode_uint32_le(unsigned char *out, uint_least32_t value, size_t bytes)
{
switch (bytes) {
default:
out[3] = (unsigned char)((value >> 24) & 255);
/* fall through */
case 3:
out[2] = (unsigned char)((value >> 16) & 255);
/* fall through */
case 2:
out[1] = (unsigned char)((value >> 8) & 255);
/* fall through */
case 1:
out[0] = (unsigned char)((value >> 0) & 255);
/* fall through */
case 0:
break;
}
}
void
libblake_internal_blake2s_output_digest(struct libblake_blake2s_state *state, size_t output_len, unsigned char *output)
{
size_t i, j;
for (i = 0, j = 0; i < output_len; i += 4, j += 1)
encode_uint32_le(&output[i], state->h[j], output_len - i);
}
|