blake2s_update
blake2s_update(&input_pool.hash, buf, len);
blake2s_update(&blake, (u8 *)&ip_hdr(skb)->saddr,
blake2s_update(&blake, (u8 *)&ipv6_hdr(skb)->saddr,
blake2s_update(&blake, (u8 *)&udp_hdr(skb)->source, sizeof(__be16));
blake2s_update(&blake, label, COOKIE_KEY_LABEL_LEN);
blake2s_update(&blake, pubkey, NOISE_PUBLIC_KEY_LEN);
blake2s_update(&blake, key, keylen);
blake2s_update(&blake, x_key, BLAKE2S_BLOCK_SIZE);
blake2s_update(&blake, in, inlen);
blake2s_update(&blake, x_key, BLAKE2S_BLOCK_SIZE);
blake2s_update(&blake, i_hash, BLAKE2S_HASH_SIZE);
blake2s_update(&blake, handshake_init_chaining_key, NOISE_HASH_LEN);
blake2s_update(&blake, identifier_name, sizeof(identifier_name));
blake2s_update(&blake, hash, NOISE_HASH_LEN);
blake2s_update(&blake, src, src_len);
void blake2s_update(struct blake2s_ctx *ctx, const u8 *in, size_t inlen);
blake2s_update(&ctx, in, inlen);
EXPORT_SYMBOL(blake2s_update);
#define HASH_UPDATE blake2s_update
blake2s_update(&main_ctx, hash, out_len);
blake2s_update(&ctx, test_buf, data_len);
blake2s_update(&ctx, data, i);
blake2s_update(&ctx, data, i / 2);
blake2s_update(&ctx, &data[i / 2], i - (i / 2));
blake2s_update(&main_ctx, hash, HASH_LEN);
void blake2s_update(struct blake2s_ctx *ctx, const u8 *in, size_t inlen);
blake2s_update(ctx, (const u8 *)&prefix, sizeof(prefix));
blake2s_update(ctx, data, len);