kernel/lib/crypto/blake2s-generic.c
.. .. @@ -37,7 +37,11 @@ 37 37 state->t[1] += (state->t[0] < inc); 38 38 } 39 39 40 -void blake2s_compress_generic(struct blake2s_state *state,const u8 *block,40 +void blake2s_compress(struct blake2s_state *state, const u8 *block,41 + size_t nblocks, const u32 inc)42 + __weak __alias(blake2s_compress_generic);43 +44 +void blake2s_compress_generic(struct blake2s_state *state, const u8 *block,41 45 size_t nblocks, const u32 inc) 42 46 { 43 47 u32 m[16];