/* SPDX-License-Identifier: GPL-2.0 OR MIT */ /* * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #ifndef _CRYPTO_BLAKE2S_H #define _CRYPTO_BLAKE2S_H #include <linux/bug.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/string.h> enum blake2s_lengths { BLAKE2S_BLOCK_SIZE = 64, BLAKE2S_HASH_SIZE = 32, BLAKE2S_KEY_SIZE = 32, BLAKE2S_128_HASH_SIZE = 16, BLAKE2S_160_HASH_SIZE = 20, BLAKE2S_224_HASH_SIZE = 28, BLAKE2S_256_HASH_SIZE = 32, }; struct blake2s_state { u32 h[8]; u32 t[2]; u32 f[2]; u8 buf[BLAKE2S_BLOCK_SIZE]; unsigned int buflen; unsigned int outlen; }; enum blake2s_iv { BLAKE2S_IV0 = 0x6A09E667UL, BLAKE2S_IV1 = 0xBB67AE85UL, BLAKE2S_IV2 = 0x3C6EF372UL, BLAKE2S_IV3 = 0xA54FF53AUL, BLAKE2S_IV4 = 0x510E527FUL, BLAKE2S_IV5 = 0x9B05688CUL, BLAKE2S_IV6 = 0x1F83D9ABUL, BLAKE2S_IV7 = 0x5BE0CD19UL, }; void blake2s_update(struct blake2s_state *state, const u8 *in, size_t inlen); void blake2s_final(struct blake2s_state *state, u8 *out); static inline void blake2s_init_param(struct blake2s_state *state, const u32 param) { *state = (struct blake2s_state){{ BLAKE2S_IV0 ^ param, BLAKE2S_IV1, BLAKE2S_IV2, BLAKE2S_IV3, BLAKE2S_IV4, BLAKE2S_IV5, BLAKE2S_IV6, BLAKE2S_IV7, }}; } static inline void blake2s_init(struct blake2s_state *state, const size_t outlen) { blake2s_init_param(state, 0x01010000 | outlen); state->outlen = outlen; } static inline void blake2s_init_key(struct blake2s_state *state, const size_t outlen, const void *key, const size_t keylen) { WARN_ON(IS_ENABLED(DEBUG) && (!outlen || outlen > BLAKE2S_HASH_SIZE || !key || !keylen || keylen > BLAKE2S_KEY_SIZE)); blake2s_init_param(state, 0x01010000 | keylen << 8 | outlen); memcpy(state->buf, key, keylen); state->buflen = BLAKE2S_BLOCK_SIZE; state->outlen = outlen; } static inline void blake2s(u8 *out, const u8 *in, const u8 *key, const size_t outlen, const size_t inlen, const size_t keylen) { struct blake2s_state state; WARN_ON(IS_ENABLED(DEBUG) && ((!in && inlen > 0) || !out || !outlen || outlen > BLAKE2S_HASH_SIZE || keylen > BLAKE2S_KEY_SIZE || (!key && keylen))); if (keylen) blake2s_init_key(&state, outlen, key, keylen); else blake2s_init(&state, outlen); blake2s_update(&state, in, inlen); blake2s_final(&state, out); } #endif /* _CRYPTO_BLAKE2S_H */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
internal | Folder | 0755 |
|
|
ablk_helper.h | File | 773 B | 0644 |
|
acompress.h | File | 7.89 KB | 0644 |
|
aead.h | File | 18.1 KB | 0644 |
|
aes.h | File | 1.03 KB | 0644 |
|
akcipher.h | File | 11.7 KB | 0644 |
|
algapi.h | File | 11.12 KB | 0644 |
|
authenc.h | File | 845 B | 0644 |
|
b128ops.h | File | 2.41 KB | 0644 |
|
blake2s.h | File | 2.37 KB | 0644 |
|
blowfish.h | File | 415 B | 0644 |
|
cast5.h | File | 590 B | 0644 |
|
cast6.h | File | 636 B | 0644 |
|
cast_common.h | File | 232 B | 0644 |
|
cbc.h | File | 3.48 KB | 0644 |
|
chacha20.h | File | 1.01 KB | 0644 |
|
cryptd.h | File | 2.5 KB | 0644 |
|
crypto_wq.h | File | 161 B | 0644 |
|
ctr.h | File | 524 B | 0644 |
|
des.h | File | 542 B | 0644 |
|
dh.h | File | 2.62 KB | 0644 |
|
drbg.h | File | 9.05 KB | 0644 |
|
ecdh.h | File | 2.67 KB | 0644 |
|
engine.h | File | 4 KB | 0644 |
|
gcm.h | File | 140 B | 0644 |
|
gf128mul.h | File | 9.41 KB | 0644 |
|
ghash.h | File | 381 B | 0644 |
|
hash.h | File | 31.48 KB | 0644 |
|
hash_info.h | File | 1.13 KB | 0644 |
|
hmac.h | File | 173 B | 0644 |
|
if_alg.h | File | 7 KB | 0644 |
|
kpp.h | File | 9.68 KB | 0644 |
|
lrw.h | File | 1.22 KB | 0644 |
|
mcryptd.h | File | 2.37 KB | 0644 |
|
md5.h | File | 497 B | 0644 |
|
null.h | File | 569 B | 0644 |
|
padlock.h | File | 649 B | 0644 |
|
pcrypt.h | File | 1.4 KB | 0644 |
|
pkcs7.h | File | 1.21 KB | 0644 |
|
poly1305.h | File | 920 B | 0644 |
|
public_key.h | File | 2.08 KB | 0644 |
|
rng.h | File | 6.66 KB | 0644 |
|
scatterwalk.h | File | 3.67 KB | 0644 |
|
serpent.h | File | 712 B | 0644 |
|
sha.h | File | 2.88 KB | 0644 |
|
sha1_base.h | File | 2.47 KB | 0644 |
|
sha256_base.h | File | 3.03 KB | 0644 |
|
sha3.h | File | 704 B | 0644 |
|
sha512_base.h | File | 3.19 KB | 0644 |
|
skcipher.h | File | 20.7 KB | 0644 |
|
sm3.h | File | 833 B | 0644 |
|
sm3_base.h | File | 2.95 KB | 0644 |
|
twofish.h | File | 755 B | 0644 |
|
xts.h | File | 1.81 KB | 0644 |
|