sha3_384_update
ATTRIBUTE_WARN_UNUSED_RET int sha3_384_update(sha3_384_context *ctx, const u8 *input, u32 ilen);
return sha3_384_update((sha3_384_context*)hctx, chunk, chunklen);
ret = sha3_384_update(&ctx, input, ilen); EG(ret, err);
ret = sha3_384_update(&ctx, buf, buflen); EG(ret, err);