Home
last modified time | relevance | path

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

/lib/crypto/
Dpoly1305-donna64.c118 u64 g0, g1, g2; in poly1305_core_emit() local
152 g2 = h2 + c - (1ULL << 42); in poly1305_core_emit()
155 c = (g2 >> ((sizeof(u64) * 8) - 1)) - 1; in poly1305_core_emit()
158 g2 &= c; in poly1305_core_emit()
162 h2 = (h2 & c) | g2; in poly1305_core_emit()
Dpoly1305-donna32.c125 u32 g0, g1, g2, g3, g4; in poly1305_core_emit() local
159 g2 = h2 + c; in poly1305_core_emit()
160 c = g2 >> 26; in poly1305_core_emit()
161 g2 &= 0x3ffffff; in poly1305_core_emit()
171 g2 &= mask; in poly1305_core_emit()
178 h2 = (h2 & mask) | g2; in poly1305_core_emit()