1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
3 * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
9 #include <linux/types.h>
10 #include <linux/kernel.h>
11 #include <linux/string.h>
15 enum blake2s_lengths
{
16 BLAKE2S_BLOCK_SIZE
= 64,
17 BLAKE2S_HASH_SIZE
= 32,
18 BLAKE2S_KEY_SIZE
= 32,
20 BLAKE2S_128_HASH_SIZE
= 16,
21 BLAKE2S_160_HASH_SIZE
= 20,
22 BLAKE2S_224_HASH_SIZE
= 28,
23 BLAKE2S_256_HASH_SIZE
= 32,
26 struct blake2s_state
{
30 u8 buf
[BLAKE2S_BLOCK_SIZE
];
36 BLAKE2S_IV0
= 0x6A09E667UL
,
37 BLAKE2S_IV1
= 0xBB67AE85UL
,
38 BLAKE2S_IV2
= 0x3C6EF372UL
,
39 BLAKE2S_IV3
= 0xA54FF53AUL
,
40 BLAKE2S_IV4
= 0x510E527FUL
,
41 BLAKE2S_IV5
= 0x9B05688CUL
,
42 BLAKE2S_IV6
= 0x1F83D9ABUL
,
43 BLAKE2S_IV7
= 0x5BE0CD19UL
,
46 void blake2s_update(struct blake2s_state
*state
, const u8
*in
, size_t inlen
);
47 void blake2s_final(struct blake2s_state
*state
, u8
*out
);
49 static inline void blake2s_init_param(struct blake2s_state
*state
,
52 *state
= (struct blake2s_state
){{
64 static inline void blake2s_init(struct blake2s_state
*state
,
67 blake2s_init_param(state
, 0x01010000 | outlen
);
68 state
->outlen
= outlen
;
71 static inline void blake2s_init_key(struct blake2s_state
*state
,
72 const size_t outlen
, const void *key
,
75 WARN_ON(IS_ENABLED(DEBUG
) && (!outlen
|| outlen
> BLAKE2S_HASH_SIZE
||
76 !key
|| !keylen
|| keylen
> BLAKE2S_KEY_SIZE
));
78 blake2s_init_param(state
, 0x01010000 | keylen
<< 8 | outlen
);
79 memcpy(state
->buf
, key
, keylen
);
80 state
->buflen
= BLAKE2S_BLOCK_SIZE
;
81 state
->outlen
= outlen
;
84 static inline void blake2s(u8
*out
, const u8
*in
, const u8
*key
,
85 const size_t outlen
, const size_t inlen
,
88 struct blake2s_state state
;
90 WARN_ON(IS_ENABLED(DEBUG
) && ((!in
&& inlen
> 0) || !out
|| !outlen
||
91 outlen
> BLAKE2S_HASH_SIZE
|| keylen
> BLAKE2S_KEY_SIZE
||
95 blake2s_init_key(&state
, outlen
, key
, keylen
);
97 blake2s_init(&state
, outlen
);
99 blake2s_update(&state
, in
, inlen
);
100 blake2s_final(&state
, out
);
103 void blake2s256_hmac(u8
*out
, const u8
*in
, const u8
*key
, const size_t inlen
,
104 const size_t keylen
);
106 #endif /* BLAKE2S_H */