hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/lib/crypto/blake2s-generic.c
....@@ -37,7 +37,11 @@
3737 state->t[1] += (state->t[0] < inc);
3838 }
3939
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,
4145 size_t nblocks, const u32 inc)
4246 {
4347 u32 m[16];