blob: 3f06183c2d804af3ff35b51a2a86f4d8840528d0 [file] [log] [blame]
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +01001/* SPDX-License-Identifier: GPL-2.0 OR MIT */
2/*
3 * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
4 */
5
Eric Biggers87868412020-12-23 00:09:57 -08006#ifndef _CRYPTO_BLAKE2S_H
7#define _CRYPTO_BLAKE2S_H
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +01008
9#include <linux/types.h>
10#include <linux/kernel.h>
11#include <linux/string.h>
12
13#include <asm/bug.h>
14
15enum blake2s_lengths {
16 BLAKE2S_BLOCK_SIZE = 64,
17 BLAKE2S_HASH_SIZE = 32,
18 BLAKE2S_KEY_SIZE = 32,
19
20 BLAKE2S_128_HASH_SIZE = 16,
21 BLAKE2S_160_HASH_SIZE = 20,
22 BLAKE2S_224_HASH_SIZE = 28,
23 BLAKE2S_256_HASH_SIZE = 32,
24};
25
26struct blake2s_state {
Eric Biggers7d871312020-12-23 00:09:56 -080027 /* 'h', 't', and 'f' are used in assembly code, so keep them as-is. */
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +010028 u32 h[8];
29 u32 t[2];
30 u32 f[2];
31 u8 buf[BLAKE2S_BLOCK_SIZE];
32 unsigned int buflen;
33 unsigned int outlen;
34};
35
36enum blake2s_iv {
37 BLAKE2S_IV0 = 0x6A09E667UL,
38 BLAKE2S_IV1 = 0xBB67AE85UL,
39 BLAKE2S_IV2 = 0x3C6EF372UL,
40 BLAKE2S_IV3 = 0xA54FF53AUL,
41 BLAKE2S_IV4 = 0x510E527FUL,
42 BLAKE2S_IV5 = 0x9B05688CUL,
43 BLAKE2S_IV6 = 0x1F83D9ABUL,
44 BLAKE2S_IV7 = 0x5BE0CD19UL,
45};
46
Eric Biggers42ad8cf2020-12-23 00:09:55 -080047static inline void __blake2s_init(struct blake2s_state *state, size_t outlen,
48 const void *key, size_t keylen)
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +010049{
Eric Biggers42ad8cf2020-12-23 00:09:55 -080050 state->h[0] = BLAKE2S_IV0 ^ (0x01010000 | keylen << 8 | outlen);
51 state->h[1] = BLAKE2S_IV1;
52 state->h[2] = BLAKE2S_IV2;
53 state->h[3] = BLAKE2S_IV3;
54 state->h[4] = BLAKE2S_IV4;
55 state->h[5] = BLAKE2S_IV5;
56 state->h[6] = BLAKE2S_IV6;
57 state->h[7] = BLAKE2S_IV7;
58 state->t[0] = 0;
59 state->t[1] = 0;
60 state->f[0] = 0;
61 state->f[1] = 0;
62 state->buflen = 0;
63 state->outlen = outlen;
64 if (keylen) {
65 memcpy(state->buf, key, keylen);
66 memset(&state->buf[keylen], 0, BLAKE2S_BLOCK_SIZE - keylen);
67 state->buflen = BLAKE2S_BLOCK_SIZE;
68 }
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +010069}
70
71static inline void blake2s_init(struct blake2s_state *state,
72 const size_t outlen)
73{
Eric Biggers42ad8cf2020-12-23 00:09:55 -080074 __blake2s_init(state, outlen, NULL, 0);
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +010075}
76
77static inline void blake2s_init_key(struct blake2s_state *state,
78 const size_t outlen, const void *key,
79 const size_t keylen)
80{
81 WARN_ON(IS_ENABLED(DEBUG) && (!outlen || outlen > BLAKE2S_HASH_SIZE ||
82 !key || !keylen || keylen > BLAKE2S_KEY_SIZE));
83
Eric Biggers42ad8cf2020-12-23 00:09:55 -080084 __blake2s_init(state, outlen, key, keylen);
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +010085}
86
Eric Biggers42ad8cf2020-12-23 00:09:55 -080087void blake2s_update(struct blake2s_state *state, const u8 *in, size_t inlen);
88void blake2s_final(struct blake2s_state *state, u8 *out);
89
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +010090static inline void blake2s(u8 *out, const u8 *in, const u8 *key,
91 const size_t outlen, const size_t inlen,
92 const size_t keylen)
93{
94 struct blake2s_state state;
95
96 WARN_ON(IS_ENABLED(DEBUG) && ((!in && inlen > 0) || !out || !outlen ||
97 outlen > BLAKE2S_HASH_SIZE || keylen > BLAKE2S_KEY_SIZE ||
98 (!key && keylen)));
99
Eric Biggers42ad8cf2020-12-23 00:09:55 -0800100 __blake2s_init(&state, outlen, key, keylen);
Jason A. Donenfeld66d7fb92019-11-08 13:22:28 +0100101 blake2s_update(&state, in, inlen);
102 blake2s_final(&state, out);
103}
104
105void blake2s256_hmac(u8 *out, const u8 *in, const u8 *key, const size_t inlen,
106 const size_t keylen);
107
Eric Biggers87868412020-12-23 00:09:57 -0800108#endif /* _CRYPTO_BLAKE2S_H */