Searched refs:blake2b_update (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Modules/_blake2/ |
H A D | blake2b_impl.c | 215 blake2b_update(&self->state, block, sizeof(block)); in py_blake2b_new_impl() 225 blake2b_update(&self->state, buf.buf, buf.len); in py_blake2b_new_impl() 228 blake2b_update(&self->state, buf.buf, buf.len); in py_blake2b_new_impl() 287 blake2b_update(&self->state, buf.buf, buf.len); in _blake2_blake2b_update() 291 blake2b_update(&self->state, buf.buf, buf.len); in _blake2_blake2b_update()
|
H A D | blake2module.h | 17 #define blake2b_update PyBlake2_blake2b_update macro
|
/third_party/python/Modules/_blake2/impl/ |
H A D | blake2b.c | 198 int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen ); 274 blake2b_update( S, block, BLAKE2B_BLOCKBYTES ); in blake2b_init_key() 351 int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen ) in blake2b_update() function 427 if( blake2b_update( S, ( uint8_t * )in, inlen ) < 0) return -1; in blake2b()
|
H A D | blake2b-ref.c | 154 int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen ); 224 blake2b_update( S, block, BLAKE2B_BLOCKBYTES ); in blake2b_init_key() 294 int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen ) in blake2b_update() function 375 if( blake2b_update( S, ( uint8_t * )in, inlen ) < 0 ) return -1; in blake2b()
|
H A D | blake2.h | 152 BLAKE2_API int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen );
|
Completed in 3 milliseconds