Lines Matching +full:0 +full:x01010000

19 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
48 0x6A09E667UL, 0xBB67AE85UL, 0x3C6EF372UL, 0xA54FF53AUL,
49 0x510E527FUL, 0x9B05688CUL, 0x1F83D9ABUL, 0x5BE0CD19UL
53 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
54 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
55 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 },
56 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 },
57 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 },
58 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 },
59 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 },
60 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 },
61 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 },
62 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 },
67 state->f[0] = -1; in blake2s_set_lastblock()
73 state->t[0] += inc; in blake2s_increment_counter()
74 state->t[1] += (state->t[0] < inc); in blake2s_increment_counter()
82 memset(state, 0, sizeof(*state)); in blake2s_init_param()
83 for (i = 0; i < 8; ++i) in blake2s_init_param()
85 state->h[0] ^= param; in blake2s_init_param()
90 blake2s_init_param(state, 0x01010000 | outlen); in blake2s_init()
97 uint8_t block[BLAKE2S_BLOCK_SIZE] = { 0 }; in blake2s_init_key()
99 blake2s_init_param(state, 0x01010000 | keylen << 8 | outlen); in blake2s_init_key()
114 while (nblocks > 0) { in blake2s_compress()
119 v[ 8] = blake2s_iv[0]; in blake2s_compress()
123 v[12] = blake2s_iv[4] ^ state->t[0]; in blake2s_compress()
125 v[14] = blake2s_iv[6] ^ state->f[0]; in blake2s_compress()
129 a += b + m[blake2s_sigma[r][2 * i + 0]]; \ in blake2s_compress()
137 } while (0) in blake2s_compress()
140 G(r, 0, v[0], v[ 4], v[ 8], v[12]); \ in blake2s_compress()
144 G(r, 4, v[0], v[ 5], v[10], v[15]); \ in blake2s_compress()
148 } while (0) in blake2s_compress()
149 ROUND(0); in blake2s_compress()
163 for (i = 0; i < 8; ++i) in blake2s_compress()
180 state->buflen = 0; in blake2s_update()
198 memset(state->buf + state->buflen, 0, in blake2s_final()
210 return (0); in crypto_callback()
260 return (0); in chacha20poly1305_decrypt_mbuf()
274 if (ret != 0) in crypto_init()
276 return (0); in crypto_init()