Searched refs:h (Results 1 – 4 of 4) sorted by relevance
/lib/source/ |
A D | hmac_prng.c | 84 tc_hmac_set_key(&prng->h, prng->key, sizeof(prng->key)); in update() 87 (void)tc_hmac_init(&prng->h); in update() 92 (void)tc_hmac_update(&prng->h, data, datalen); in update() 102 (void)tc_hmac_init(&prng->h); in update() 104 (void)tc_hmac_final(prng->v, sizeof(prng->v), &prng->h); in update() 110 tc_hmac_set_key(&prng->h, prng->key, sizeof(prng->key)); in update() 113 (void)tc_hmac_init(&prng->h); in update() 116 (void)tc_hmac_update(&prng->h, data, datalen); in update() 125 (void)tc_hmac_init(&prng->h); in update() 127 (void)tc_hmac_final(prng->v, sizeof(prng->v), &prng->h); in update() [all …]
|
A D | sha256.c | 183 unsigned int a, b, c, d, e, f, g, h; in compress() local 191 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress() 196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 198 h = g; g = f; f = e; e = d + t1; in compress() 209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 211 h = g; g = f; f = e; e = d + t1; in compress() 216 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
|
/lib/include/tinycrypt/ |
A D | hmac_prng.h | 82 struct tc_hmac_state_struct h; member
|
A D | ecc.h | 154 #define BYTES_TO_WORDS_8(a, b, c, d, e, f, g, h) 0x##d##c##b##a, 0x##h##g##f##e argument
|
Completed in 14 milliseconds