Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 3 of 3) sorted by relevance

/lib/source/
A Dctr_prng.c78 uint8_t temp[TC_AES_KEY_SIZE + TC_AES_BLOCK_SIZE]; in tc_ctr_prng_update() local
82 while (len < sizeof temp) { in tc_ctr_prng_update()
83 unsigned int blocklen = sizeof(temp) - len; in tc_ctr_prng_update()
96 memcpy(&(temp[len]), output_block, blocklen); in tc_ctr_prng_update()
104 for (i = 0U; i < sizeof temp; i++) { in tc_ctr_prng_update()
105 temp[i] ^= providedData[i]; in tc_ctr_prng_update()
110 (void)tc_aes128_set_encrypt_key(&ctx->key, temp); in tc_ctr_prng_update()
113 memcpy(ctx->V, &(temp[TC_AES_KEY_SIZE]), TC_AES_BLOCK_SIZE); in tc_ctr_prng_update()
A Decc_dsa.c88 uECC_word_t temp = *ptr; in bits2int() local
89 *ptr = (temp >> shift) | carry; in bits2int()
90 carry = temp << (uECC_WORD_BITS - shift); in bits2int()
A Decc.c239 uECC_word_t temp = *vli; in uECC_vli_rshift1() local
240 *vli = (temp >> 1) | carry; in uECC_vli_rshift1()
241 carry = temp << (uECC_WORD_BITS - 1); in uECC_vli_rshift1()

Completed in 12 milliseconds