Searched refs:blake2s_update (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2sp.c | 108 blake2s_update( S->S[i], block, BLAKE2S_BLOCKBYTES ); in blake2sp_init_key() 126 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, BLAKE2S_BLOCKBYTES ); in blake2sp_update() 149 blake2s_update( S->S[id__], in__, BLAKE2S_BLOCKBYTES ); in blake2sp_update() 180 blake2s_update( S->S[i], S->buf + i * BLAKE2S_BLOCKBYTES, left ); in blake2sp_final() 187 blake2s_update( S->R, hash[i], BLAKE2S_OUTBYTES ); in blake2sp_final() 224 blake2s_update( S[i], block, BLAKE2S_BLOCKBYTES ); in blake2sp() 246 blake2s_update( S[id__], in__, BLAKE2S_BLOCKBYTES ); in blake2sp() 255 blake2s_update( S[id__], in__, len ); in blake2sp() 267 blake2s_update( FS, hash[i], BLAKE2S_OUTBYTES ); in blake2sp()
|
D | blake2s.c | 184 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ); 259 blake2s_update( S, block, BLAKE2S_BLOCKBYTES ); in blake2s_init_key() 324 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ) in blake2s_update() function 405 if( blake2s_update( S, ( uint8_t * )in, inlen ) < 0) return -1; in blake2s()
|
D | blake2s-ref.c | 147 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ); 217 blake2s_update( S, block, BLAKE2S_BLOCKBYTES ); in blake2s_init_key() 284 int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ) in blake2s_update() function 365 if( blake2s_update( S, ( uint8_t * )in, inlen ) < 0) return -1; in blake2s()
|
D | blake2.h | 146 BLAKE2_API int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen );
|
D | blake2-dispatch.c | 563 BLAKE2_API int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen ) in blake2s_update() function
|
/external/python/cpython3/Modules/_blake2/ |
D | blake2s_impl.c | 213 blake2s_update(&self->state, block, sizeof(block)); in py_blake2s_new_impl() 223 blake2s_update(&self->state, buf.buf, buf.len); in py_blake2s_new_impl() 226 blake2s_update(&self->state, buf.buf, buf.len); in py_blake2s_new_impl() 285 blake2s_update(&self->state, buf.buf, buf.len); in _blake2_blake2s_update() 289 blake2s_update(&self->state, buf.buf, buf.len); in _blake2_blake2s_update()
|
D | blake2ns.h | 25 #define blake2s_update PyBlake2_blake2s_update macro
|