Symbol: blake2b_ctx
crypto/blake2b.c
29
#define BLAKE2B_CTX(desc) ((struct blake2b_ctx *)shash_desc_ctx(desc))
crypto/blake2b.c
79
.descsize = sizeof(struct blake2b_ctx), \
fs/btrfs/fs.h
1094
struct blake2b_ctx blake2b;
include/crypto/blake2b.h
115
void blake2b_update(struct blake2b_ctx *ctx, const u8 *in, size_t inlen);
include/crypto/blake2b.h
127
void blake2b_final(struct blake2b_ctx *ctx, u8 *out);
include/crypto/blake2b.h
145
struct blake2b_ctx ctx;
include/crypto/blake2b.h
51
static inline void __blake2b_init(struct blake2b_ctx *ctx, size_t outlen,
include/crypto/blake2b.h
82
static inline void blake2b_init(struct blake2b_ctx *ctx, size_t outlen)
include/crypto/blake2b.h
96
static inline void blake2b_init_key(struct blake2b_ctx *ctx, size_t outlen,
lib/crypto/arm/blake2b.h
13
asmlinkage void blake2b_compress_neon(struct blake2b_ctx *ctx,
lib/crypto/arm/blake2b.h
16
static void blake2b_compress(struct blake2b_ctx *ctx,
lib/crypto/blake2b.c
112
static inline void blake2b_set_lastblock(struct blake2b_ctx *ctx)
lib/crypto/blake2b.c
117
void blake2b_update(struct blake2b_ctx *ctx, const u8 *in, size_t inlen)
lib/crypto/blake2b.c
142
void blake2b_final(struct blake2b_ctx *ctx, u8 *out)
lib/crypto/blake2b.c
35
static inline void blake2b_increment_counter(struct blake2b_ctx *ctx, u32 inc)
lib/crypto/blake2b.c
42
blake2b_compress_generic(struct blake2b_ctx *ctx,
lib/crypto/tests/blake2b_kunit.c
20
static void blake2b_init_default(struct blake2b_ctx *ctx)
lib/crypto/tests/blake2b_kunit.c
30
#define HASH_CTX blake2b_ctx
lib/crypto/tests/blake2b_kunit.c
47
struct blake2b_ctx main_ctx;
lib/crypto/tests/blake2b_kunit.c
78
struct blake2b_ctx ctx;