Lines Matching refs:src
93 const u8 *src, unsigned int srclen, nh_t nh_fn) in nhpoly1305_units() argument
101 nh_fn(key->nh_key, src, bytes, state->nh_hash); in nhpoly1305_units()
111 nh_fn(&key->nh_key[pos / 4], src, bytes, tmp_hash); in nhpoly1305_units()
119 src += bytes; in nhpoly1305_units()
155 const u8 *src, unsigned int srclen, in crypto_nhpoly1305_update_helper() argument
164 memcpy(&state->buffer[state->buflen], src, bytes); in crypto_nhpoly1305_update_helper()
171 src += bytes; in crypto_nhpoly1305_update_helper()
177 nhpoly1305_units(state, key, src, bytes, nh_fn); in crypto_nhpoly1305_update_helper()
178 src += bytes; in crypto_nhpoly1305_update_helper()
183 memcpy(state->buffer, src, srclen); in crypto_nhpoly1305_update_helper()
191 const u8 *src, unsigned int srclen) in crypto_nhpoly1305_update() argument
193 return crypto_nhpoly1305_update_helper(desc, src, srclen, nh_generic); in crypto_nhpoly1305_update()