HomeSort by relevance Sort by last modified time
    Searched refs:blake2b_state (Results 1 - 4 of 4) sorted by null

  /external/python/cpython3/Modules/_blake2/impl/
blake2.h 70 } blake2b_state; typedef in typeref:struct:__blake2b_state
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 keylen );
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 );
blake2b.c 70 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastnode( blake2b_state *S )
76 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastnode( blake2b_state *S )
82 BLAKE2_LOCAL_INLINE(int) blake2b_is_lastblock( const blake2b_state *S )
87 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastblock( blake2b_state *S )
95 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastblock( blake2b_state *S )
104 BLAKE2_LOCAL_INLINE(int) blake2b_increment_counter( blake2b_state *S, const uint64_t inc )
175 BLAKE2_LOCAL_INLINE(int) blake2b_init0( blake2b_state *S )
178 memset( S, 0, sizeof( blake2b_state ) );
186 int blake2b_init_param( blake2b_state *S, const blake2b_param *P )
194 memset( S, 0, sizeof( blake2b_state ) );
    [all...]
blake2b-ref.c 48 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastnode( blake2b_state *S )
54 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastnode( blake2b_state *S )
61 BLAKE2_LOCAL_INLINE(int) blake2b_is_lastblock( const blake2b_state *S )
66 BLAKE2_LOCAL_INLINE(int) blake2b_set_lastblock( blake2b_state *S )
74 BLAKE2_LOCAL_INLINE(int) blake2b_clear_lastblock( blake2b_state *S )
82 BLAKE2_LOCAL_INLINE(int) blake2b_increment_counter( blake2b_state *S, const uint64_t inc )
146 BLAKE2_LOCAL_INLINE(int) blake2b_init0( blake2b_state *S )
149 memset( S, 0, sizeof( blake2b_state ) );
157 int blake2b_init_param( blake2b_state *S, const blake2b_param *P )
173 int blake2b_init( blake2b_state *S, const uint8_t outlen
    [all...]
  /external/python/cpython3/Modules/_blake2/
blake2b_impl.c 43 blake2b_state state;
328 blake2b_state state_cpy;
349 blake2b_state state_cpy;

Completed in 86 milliseconds