/kernel/linux/linux-5.10/lib/crypto/ |
H A D | Makefile | 13 # blake2s is used by the /dev/random driver which is always builtin 15 libblake2s-y := blake2s.o 16 libblake2s-$(CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC) += blake2s-generic.o 41 libblake2s-y += blake2s-selftest.o
|
H A D | blake2s.c | 11 #include <crypto/internal/blake2s.h>
|
H A D | blake2s-generic.c | 11 #include <crypto/internal/blake2s.h>
|
/kernel/linux/linux-6.6/lib/crypto/ |
H A D | Makefile | 21 # blake2s is used by the /dev/random driver which is always builtin 23 libblake2s-y := blake2s.o 24 libblake2s-$(CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC) += blake2s-generic.o 52 libblake2s-y += blake2s-selftest.o
|
H A D | blake2s.c | 11 #include <crypto/internal/blake2s.h>
|
H A D | blake2s-generic.c | 11 #include <crypto/internal/blake2s.h>
|
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | Makefile | 68 obj-$(CONFIG_CRYPTO_BLAKE2S_X86) += blake2s-x86_64.o 69 blake2s-x86_64-y := blake2s-shash.o 71 libblake2s-x86_64-y := blake2s-core.o blake2s-glue.o
|
H A D | blake2s-shash.c | 6 #include <crypto/internal/blake2s.h> 47 BLAKE2S_ALG("blake2s-128", "blake2s-128-x86", BLAKE2S_128_HASH_SIZE), 48 BLAKE2S_ALG("blake2s-160", "blake2s-160-x86", BLAKE2S_160_HASH_SIZE), 49 BLAKE2S_ALG("blake2s-224", "blake2s-224-x86", BLAKE2S_224_HASH_SIZE), 50 BLAKE2S_ALG("blake2s-256", "blake2s-256-x86", BLAKE2S_256_HASH_SIZE), 69 MODULE_ALIAS_CRYPTO("blake2s [all...] |
H A D | blake2s-glue.c | 6 #include <crypto/internal/blake2s.h>
|
/kernel/linux/linux-6.6/arch/arm/crypto/ |
H A D | blake2s-glue.c | 3 #include <crypto/internal/blake2s.h> 6 /* defined in blake2s-core.S */
|
H A D | Makefile | 34 libblake2s-arm-y:= blake2s-core.o blake2s-glue.o
|
/kernel/linux/linux-6.6/include/crypto/internal/ |
H A D | blake2s.h | 10 #include <crypto/blake2s.h>
|
/kernel/linux/linux-5.10/drivers/net/wireguard/ |
H A D | cookie.c | 13 #include <crypto/blake2s.h> 80 blake2s(mac1, message, key, COOKIE_LEN, len, NOISE_SYMMETRIC_KEY_LEN); in compute_mac1() 88 blake2s(mac2, message, cookie, COOKIE_LEN, len, COOKIE_LEN); in compute_mac2()
|
H A D | messages.h | 11 #include <crypto/blake2s.h>
|
H A D | noise.c | 38 blake2s(handshake_init_chaining_key, handshake_name, NULL, in wg_noise_init()
|
/kernel/linux/linux-6.6/drivers/net/wireguard/ |
H A D | cookie.c | 13 #include <crypto/blake2s.h> 80 blake2s(mac1, message, key, COOKIE_LEN, len, NOISE_SYMMETRIC_KEY_LEN); in compute_mac1() 88 blake2s(mac2, message, cookie, COOKIE_LEN, len, COOKIE_LEN); in compute_mac2()
|
H A D | messages.h | 11 #include <crypto/blake2s.h>
|
/kernel/linux/linux-5.10/crypto/ |
H A D | blake2s_generic.c | 8 #include <crypto/internal/blake2s.h> 44 BLAKE2S_ALG("blake2s-128", "blake2s-128-generic", 46 BLAKE2S_ALG("blake2s-160", "blake2s-160-generic", 48 BLAKE2S_ALG("blake2s-224", "blake2s-224-generic", 50 BLAKE2S_ALG("blake2s-256", "blake2s-256-generic", 67 MODULE_ALIAS_CRYPTO("blake2s [all...] |
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | blake2s-glue.c | 6 #include <crypto/internal/blake2s.h>
|
H A D | Makefile | 65 libblake2s-x86_64-y := blake2s-core.o blake2s-glue.o
|
/kernel/linux/linux-5.10/include/crypto/internal/ |
H A D | blake2s.h | 10 #include <crypto/blake2s.h>
|
/kernel/linux/linux-5.10/include/crypto/ |
H A D | blake2s.h | 89 static inline void blake2s(u8 *out, const u8 *in, const u8 *key, in blake2s() function
|
/kernel/linux/linux-6.6/include/crypto/ |
H A D | blake2s.h | 89 static inline void blake2s(u8 *out, const u8 *in, const u8 *key, in blake2s() function
|
/kernel/linux/linux-5.10/drivers/char/ |
H A D | random.c | 57 #include <crypto/blake2s.h> 685 blake2s(next_key, (u8 *)&block, seed, sizeof(next_key), sizeof(block), sizeof(seed)); in extract_entropy() 695 blake2s(buf, (u8 *)&block, seed, i, sizeof(block), sizeof(seed)); in extract_entropy()
|
/kernel/linux/linux-6.6/drivers/char/ |
H A D | random.c | 58 #include <crypto/blake2s.h> 682 blake2s(next_key, (u8 *)&block, seed, sizeof(next_key), sizeof(block), sizeof(seed)); in extract_entropy() 692 blake2s(buf, (u8 *)&block, seed, i, sizeof(block), sizeof(seed)); in extract_entropy()
|