Home
last modified time | relevance | path

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

/freebsd/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dblake2b-compress-ref.c9 static const uint64_t blake2b_IV[8] = {
43 v[8] = blake2b_IV[0]; in blake2b_compress_ref()
44 v[9] = blake2b_IV[1]; in blake2b_compress_ref()
45 v[10] = blake2b_IV[2]; in blake2b_compress_ref()
46 v[11] = blake2b_IV[3]; in blake2b_compress_ref()
47 v[12] = S->t[0] ^ blake2b_IV[4]; in blake2b_compress_ref()
48 v[13] = S->t[1] ^ blake2b_IV[5]; in blake2b_compress_ref()
49 v[14] = S->f[0] ^ blake2b_IV[6]; in blake2b_compress_ref()
50 v[15] = S->f[1] ^ blake2b_IV[7]; in blake2b_compress_ref()
H A Dblake2b-compress-sse41.c28 static const uint64_t blake2b_IV[8] = {
60 row3l = LOADU(&blake2b_IV[0]); in blake2b_compress_sse41()
61 row3h = LOADU(&blake2b_IV[2]); in blake2b_compress_sse41()
62 row4l = _mm_xor_si128(LOADU(&blake2b_IV[4]), LOADU(&S->t[0])); in blake2b_compress_sse41()
63 row4h = _mm_xor_si128(LOADU(&blake2b_IV[6]), LOADU(&S->f[0])); in blake2b_compress_sse41()
H A Dblake2b-compress-ssse3.c22 static const uint64_t blake2b_IV[8] = {
63 row3l = LOADU(&blake2b_IV[0]); in blake2b_compress_ssse3()
64 row3h = LOADU(&blake2b_IV[2]); in blake2b_compress_ssse3()
65 row4l = _mm_xor_si128(LOADU(&blake2b_IV[4]), LOADU(&S->t[0])); in blake2b_compress_ssse3()
66 row4h = _mm_xor_si128(LOADU(&blake2b_IV[6]), LOADU(&S->f[0])); in blake2b_compress_ssse3()
H A Dblake2b-compress-avx2.c31 static const uint64_t blake2b_IV[8] = {
H A Dblake2b-compress-avx2.h127 __m256i c = LOAD(&blake2b_IV[0]); \
129 XOR(LOAD(&blake2b_IV[4]), _mm256_set_epi64x(f1, f0, t1, t0)); \
H A Dblake2b-ref.c30 static const uint64_t blake2b_IV[8] = { variable
98 S->h[i] = blake2b_IV[i]; in blake2b_init0()
/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2b_prov.c23 static const uint64_t blake2b_IV[8] = variable
60 S->h[i] = blake2b_IV[i]; in blake2b_init0()
197 v[8] = blake2b_IV[0]; in blake2b_compress()
198 v[9] = blake2b_IV[1]; in blake2b_compress()
199 v[10] = blake2b_IV[2]; in blake2b_compress()
200 v[11] = blake2b_IV[3]; in blake2b_compress()
201 v[12] = S->t[0] ^ blake2b_IV[4]; in blake2b_compress()
202 v[13] = S->t[1] ^ blake2b_IV[5]; in blake2b_compress()
203 v[14] = S->f[0] ^ blake2b_IV[6]; in blake2b_compress()
204 v[15] = S->f[1] ^ blake2b_IV[7]; in blake2b_compress()
/freebsd/sys/contrib/libb2/
H A 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()
249 v[ 8] = blake2b_IV[0]; in blake2b_compress()
250 v[ 9] = blake2b_IV[1]; in blake2b_compress()
251 v[10] = blake2b_IV[2]; in blake2b_compress()
252 v[11] = blake2b_IV[3]; in blake2b_compress()
253 v[12] = S->t[0] ^ blake2b_IV[4]; in blake2b_compress()
254 v[13] = S->t[1] ^ blake2b_IV[5]; in blake2b_compress()
255 v[14] = S->f[0] ^ blake2b_IV[6]; in blake2b_compress()
256 v[15] = S->f[1] ^ blake2b_IV[7]; in blake2b_compress()
H A 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()
217 v = ( uint8_t * )( blake2b_IV ); in blake2b_init_param()
330 row3l = LOADU( &blake2b_IV[0] ); in blake2b_compress()
331 row3h = LOADU( &blake2b_IV[2] ); in blake2b_compress()
332 row4l = _mm_xor_si128( LOADU( &blake2b_IV[4] ), LOADU( &S->t[0] ) ); in blake2b_compress()
333 row4h = _mm_xor_si128( LOADU( &blake2b_IV[6] ), LOADU( &S->f[0] ) ); in blake2b_compress()