Home
last modified time | relevance | path

Searched refs:blake2b_IV (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/_blake2/impl/
Dblake2b-ref.c21 static const uint64_t blake2b_IV[8] = variable
143 for( int i = 0; i < 8; ++i ) S->h[i] = blake2b_IV[i]; in blake2b_init0()
242 v[ 8] = blake2b_IV[0]; in blake2b_compress()
243 v[ 9] = blake2b_IV[1]; in blake2b_compress()
244 v[10] = blake2b_IV[2]; in blake2b_compress()
245 v[11] = blake2b_IV[3]; in blake2b_compress()
246 v[12] = S->t[0] ^ blake2b_IV[4]; in blake2b_compress()
247 v[13] = S->t[1] ^ blake2b_IV[5]; in blake2b_compress()
248 v[14] = S->f[0] ^ blake2b_IV[6]; in blake2b_compress()
249 v[15] = S->f[1] ^ blake2b_IV[7]; in blake2b_compress()
Dblake2b.c55 static const uint64_t blake2b_IV[8] = variable
185 for( int i = 0; i < 8; ++i ) S->h[i] = blake2b_IV[i]; in blake2b_init0()
210 v = ( uint8_t * )( blake2b_IV ); in blake2b_init_param()
323 row3l = LOADU( &blake2b_IV[0] ); in blake2b_compress()
324 row3h = LOADU( &blake2b_IV[2] ); in blake2b_compress()
325 row4l = _mm_xor_si128( LOADU( &blake2b_IV[4] ), LOADU( &S->t[0] ) ); in blake2b_compress()
326 row4h = _mm_xor_si128( LOADU( &blake2b_IV[6] ), LOADU( &S->f[0] ) ); in blake2b_compress()