Home
last modified time | relevance | path

Searched refs:blake2b_state (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Modules/_blake2/impl/
Dblake2b.c70 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastnode( blake2b_state *S ) in blake2b_set_lastnode()
76 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastnode( blake2b_state *S ) in blake2b_clear_lastnode()
82 BLAKE2_LOCAL_INLINE(int) blake2b_is_lastblock( const blake2b_state *S ) in blake2b_is_lastblock()
87 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastblock( blake2b_state *S ) in blake2b_set_lastblock()
95 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastblock( blake2b_state *S ) in blake2b_clear_lastblock()
104 BLAKE2_LOCAL_INLINE(int) blake2b_increment_counter( blake2b_state *S, const uint64_t inc ) in blake2b_increment_counter()
175 BLAKE2_LOCAL_INLINE(int) blake2b_init0( blake2b_state *S ) in blake2b_init0()
178 memset( S, 0, sizeof( blake2b_state ) ); in blake2b_init0()
186 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param()
194 memset( S, 0, sizeof( blake2b_state ) ); in blake2b_init_param()
[all …]
Dblake2b-ref.c48 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastnode( blake2b_state *S ) in blake2b_set_lastnode()
54 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastnode( blake2b_state *S ) in blake2b_clear_lastnode()
61 BLAKE2_LOCAL_INLINE(int) blake2b_is_lastblock( const blake2b_state *S ) in blake2b_is_lastblock()
66 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastblock( blake2b_state *S ) in blake2b_set_lastblock()
74 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastblock( blake2b_state *S ) in blake2b_clear_lastblock()
82 BLAKE2_LOCAL_INLINE(int) blake2b_increment_counter( blake2b_state *S, const uint64_t inc ) in blake2b_increment_counter()
146 BLAKE2_LOCAL_INLINE(int) blake2b_init0( blake2b_state *S ) in blake2b_init0()
149 memset( S, 0, sizeof( blake2b_state ) ); in blake2b_init0()
157 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param()
173 int blake2b_init( blake2b_state *S, const uint8_t outlen ) in blake2b_init()
[all …]
Dblake2.h70 } blake2b_state; typedef
82 blake2b_state S[4][1];
83 blake2b_state R[1];
128 int blake2b_init( blake2b_state *S, const uint8_t outlen );
129 …int blake2b_init_key( blake2b_state *S, const uint8_t outlen, const void *key, const uint8_t keyle…
130 int blake2b_init_param( blake2b_state *S, const blake2b_param *P );
131 int blake2b_update( blake2b_state *S, const uint8_t *in, uint64_t inlen );
132 int blake2b_final( blake2b_state *S, uint8_t *out, uint8_t outlen );
/external/python/cpython3/Modules/_blake2/
Dblake2b_impl.c43 blake2b_state state;
322 blake2b_state state_cpy; in _blake2_blake2b_digest_impl()
343 blake2b_state state_cpy; in _blake2_blake2b_hexdigest_impl()