Home
last modified time | relevance | path

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

/mbedtls-3.7.0/library/
Dpoly1305.c70 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
89 acc4 = ctx->acc[4]; in poly1305_process()
108 acc4 += (uint32_t) (d3 >> 32U) + needs_padding; in poly1305_process()
119 mul64(acc4, rs1); in poly1305_process()
124 mul64(acc4, rs2); in poly1305_process()
129 mul64(acc4, rs3); in poly1305_process()
130 acc4 *= r0; in poly1305_process()
140 acc4 = (uint32_t) (d3 >> 32) + acc4; in poly1305_process()
142 d0 = (uint64_t) acc0 + (acc4 >> 2) + (acc4 & 0xFFFFFFFCU); in poly1305_process()
143 acc4 &= 3U; in poly1305_process()
[all …]