Home
last modified time | relevance | path

Searched refs:blake2s_update (Results 1 – 7 of 7) sorted by relevance

/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_blake2sp_ref.c127 blake2s_update( S->S[i], block, BLAKE2S_BLOCKBYTES ); in blake2sp_init_key()
147 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, BLAKE2S_BLOCKBYTES ); in blake2sp_update()
169 blake2s_update( S->S[i], in__, BLAKE2S_BLOCKBYTES ); in blake2sp_update()
203 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, left ); in blake2sp_final()
210 blake2s_update( S->R, hash[i], BLAKE2S_OUTBYTES ); in blake2sp_final()
246 blake2s_update( S[i], block, BLAKE2S_BLOCKBYTES ); in blake2sp()
267 blake2s_update( S[i], in__, BLAKE2S_BLOCKBYTES ); in blake2sp()
276 blake2s_update( S[i], in__, len ); in blake2sp()
288 blake2s_update( FS, hash[i], BLAKE2S_OUTBYTES ); in blake2sp()
H A Darchive_blake2s_ref.c144 blake2s_update( S, block, BLAKE2S_BLOCKBYTES ); in blake2s_init_key()
216 int blake2s_update( blake2s_state *S, const void *pin, size_t inlen ) in blake2s_update() function
291 blake2s_update( S, ( const uint8_t * )in, inlen ); in blake2s()
344 if ( (err = blake2s_update(&S, p, step)) < 0 ) { in main()
350 if ( (err = blake2s_update(&S, p, mlen)) < 0) { in main()
H A Darchive_blake2.h150 int blake2s_update( blake2s_state *S, const void *in, size_t inlen );
/dflybsd-src/sys/net/wg/
H A Dwg_cookie.c379 blake2s_update(&blake, label, label_len); in precompute_key()
380 blake2s_update(&blake, input, COOKIE_INPUT_SIZE); in precompute_key()
391 blake2s_update(&state, buf, len); in macs_mac1()
402 blake2s_update(&state, buf, len); in macs_mac2()
403 blake2s_update(&state, macs->mac1, COOKIE_MAC_SIZE); in macs_mac2()
425 blake2s_update(&state, (const uint8_t *)&sin->sin_addr, in make_cookie()
427 blake2s_update(&state, (const uint8_t *)&sin->sin_port, in make_cookie()
433 blake2s_update(&state, (const uint8_t *)&sin6->sin6_addr, in make_cookie()
435 blake2s_update(&state, (const uint8_t *)&sin6->sin6_port, in make_cookie()
H A Dwg_noise.c1402 blake2s_update(&blake, key, keylen); in noise_hmac()
1412 blake2s_update(&blake, x_key, BLAKE2S_BLOCK_SIZE); in noise_hmac()
1413 blake2s_update(&blake, in, inlen); in noise_hmac()
1420 blake2s_update(&blake, x_key, BLAKE2S_BLOCK_SIZE); in noise_hmac()
1421 blake2s_update(&blake, i_hash, BLAKE2S_HASH_SIZE); in noise_hmac()
1515 blake2s_update(&blake, hash, NOISE_HASH_LEN); in noise_mix_hash()
1516 blake2s_update(&blake, src, src_len); in noise_mix_hash()
1543 blake2s_update(&blake, ck, NOISE_HASH_LEN); in noise_param_init()
1544 blake2s_update(&blake, NOISE_IDENTIFIER_NAME, in noise_param_init()
/dflybsd-src/sys/crypto/blake2/
H A Dblake2s.h43 void blake2s_update(struct blake2s_state *state, const uint8_t *in,
62 blake2s_update(&state, in, inlen); in blake2s()
H A Dblake2s.c93 blake2s_update(state, block, BLAKE2S_BLOCK_SIZE); in blake2s_init_key()
165 void blake2s_update(struct blake2s_state *state, const uint8_t *in, size_t inlen) in blake2s_update() function