Home
last modified time | relevance | path

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

/optee_os/core/lib/libtomcrypt/src/mac/poly1305/
H A Dpoly1305.c19 ulong32 h0,h1,h2,h3,h4; in s_poly1305_block() local
37 h2 = st->h[2]; in s_poly1305_block()
45 LOAD32L(tmp, in+ 6); h2 += (tmp >> 4) & 0x3ffffff; in s_poly1305_block()
50 …d0 = ((ulong64)h0 * r0) + ((ulong64)h1 * s4) + ((ulong64)h2 * s3) + ((ulong64)h3 * s2) + ((ulong64… in s_poly1305_block()
51 …d1 = ((ulong64)h0 * r1) + ((ulong64)h1 * r0) + ((ulong64)h2 * s4) + ((ulong64)h3 * s3) + ((ulong64… in s_poly1305_block()
52 …d2 = ((ulong64)h0 * r2) + ((ulong64)h1 * r1) + ((ulong64)h2 * r0) + ((ulong64)h3 * s4) + ((ulong64… in s_poly1305_block()
53 …d3 = ((ulong64)h0 * r3) + ((ulong64)h1 * r2) + ((ulong64)h2 * r1) + ((ulong64)h3 * r0) + ((ulong64… in s_poly1305_block()
54 …d4 = ((ulong64)h0 * r4) + ((ulong64)h1 * r3) + ((ulong64)h2 * r2) + ((ulong64)h3 * r1) + ((ulong64… in s_poly1305_block()
59 d2 += c; c = (ulong32)(d2 >> 26); h2 = (ulong32)d2 & 0x3ffffff; in s_poly1305_block()
71 st->h[2] = h2; in s_poly1305_block()
[all …]
/optee_os/core/arch/arm/include/crypto/
H A Dghash-ce-core.h13 uint64_t h2[2]; member
/optee_os/core/arch/arm/crypto/
H A Daes-gcm-ce.c58 ghash_reflect(state->ghash_key.h2, h); in internal_aes_gcm_set_key()