Searched refs:blake2s_update (Results 1 - 13 of 13) sorted by relevance

/freebsd-current/sys/contrib/libb2/
H A Dblake2sp.c108 blake2s_update( S->S[i], block, BLAKE2S_BLOCKBYTES );
126 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, BLAKE2S_BLOCKBYTES );
149 blake2s_update( S->S[id__], in__, BLAKE2S_BLOCKBYTES );
180 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, left );
187 blake2s_update( S->R, hash[i], BLAKE2S_OUTBYTES );
224 blake2s_update( S[i], block, BLAKE2S_BLOCKBYTES );
246 blake2s_update( S[id__], in__, BLAKE2S_BLOCKBYTES );
255 blake2s_update( S[id__], in__, len );
267 blake2s_update( FS, hash[i], BLAKE2S_OUTBYTES );
H A Dblake2s-ref.c144 #define blake2s_update BLAKE2_IMPL_NAME(blake2s_update) macro
154 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen );
224 blake2s_update( S, block, BLAKE2S_BLOCKBYTES );
291 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ) function
372 if( blake2s_update( S, ( uint8_t * )in, inlen ) < 0) return -1;
H A Dblake2s.c181 #define blake2s_update BLAKE2_IMPL_NAME(blake2s_update) macro
191 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen );
266 blake2s_update( S, block, BLAKE2S_BLOCKBYTES );
331 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ) function
412 if( blake2s_update( S, ( uint8_t * )in, inlen ) < 0) return -1;
H A Dblake2.h146 BLAKE2_API int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen );
H A Dblake2-dispatch.c563 BLAKE2_API int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ) function
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_blake2sp_ref.c127 blake2s_update( S->S[i], block, BLAKE2S_BLOCKBYTES );
147 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, BLAKE2S_BLOCKBYTES );
169 blake2s_update( S->S[i], in__, BLAKE2S_BLOCKBYTES );
203 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, left );
210 blake2s_update( S->R, hash[i], BLAKE2S_OUTBYTES );
246 blake2s_update( S[i], block, BLAKE2S_BLOCKBYTES );
267 blake2s_update( S[i], in__, BLAKE2S_BLOCKBYTES );
276 blake2s_update( S[i], in__, len );
288 blake2s_update( FS, hash[i], BLAKE2S_OUTBYTES );
H A Darchive_blake2s_ref.c144 blake2s_update( S, block, BLAKE2S_BLOCKBYTES );
216 int blake2s_update( blake2s_state *S, const void *pin, size_t inlen ) function
291 blake2s_update( S, ( const uint8_t * )in, inlen );
344 if ( (err = blake2s_update(&S, p, step)) < 0 ) {
350 if ( (err = blake2s_update(&S, p, mlen)) < 0) {
H A Darchive_blake2.h150 int blake2s_update( blake2s_state *S, const void *in, size_t inlen );
/freebsd-current/sys/dev/wg/
H A Dwg_cookie.c276 blake2s_update(&blake, label, strlen(label));
277 blake2s_update(&blake, input, COOKIE_INPUT_SIZE);
287 blake2s_update(&state, buf, len);
297 blake2s_update(&state, buf, len);
298 blake2s_update(&state, macs->mac1, COOKIE_MAC_SIZE);
326 blake2s_update(&state, (uint8_t *)&satosin(sa)->sin_addr,
328 blake2s_update(&state, (uint8_t *)&satosin(sa)->sin_port,
333 blake2s_update(&state, (uint8_t *)&satosin6(sa)->sin6_addr,
335 blake2s_update(&state, (uint8_t *)&satosin6(sa)->sin6_port,
H A Dcrypto.h102 void blake2s_update(struct blake2s_state *state, const uint8_t *in, size_t inlen);
116 blake2s_update(&state, in, inlen);
H A Dwg_crypto.c102 blake2s_update(state, block, BLAKE2S_BLOCK_SIZE);
171 void blake2s_update(struct blake2s_state *state, const uint8_t *in, size_t inlen) function
H A Dwg_noise.c1205 blake2s_update(&state, key, keylen);
1214 blake2s_update(&state, x_key, BLAKE2S_BLOCK_SIZE);
1215 blake2s_update(&state, in, inlen);
1222 blake2s_update(&state, x_key, BLAKE2S_BLOCK_SIZE);
1223 blake2s_update(&state, i_hash, BLAKE2S_HASH_SIZE);
1307 blake2s_update(&blake, hash, NOISE_HASH_LEN);
1308 blake2s_update(&blake, src, src_len);
1335 blake2s_update(&blake, ck, NOISE_HASH_LEN);
1336 blake2s_update(&blake, (uint8_t *)NOISE_IDENTIFIER_NAME,
/freebsd-current/sys/crypto/blake2/
H A Dblake2_cryptodev.c244 rc = blake2s_update(state, buf, len);

Completed in 145 milliseconds