Home
last modified time | relevance | path

Searched refs:h4 (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
39 h4 = st->h[4]; in s_poly1305_block()
47 LOAD32L(tmp, in+12); h4 += (tmp >> 8) | hibit; in s_poly1305_block()
50 …ong64)h0 * r0) + ((ulong64)h1 * s4) + ((ulong64)h2 * s3) + ((ulong64)h3 * s2) + ((ulong64)h4 * s1); in s_poly1305_block()
51 …ong64)h0 * r1) + ((ulong64)h1 * r0) + ((ulong64)h2 * s4) + ((ulong64)h3 * s3) + ((ulong64)h4 * s2); in s_poly1305_block()
52 …ong64)h0 * r2) + ((ulong64)h1 * r1) + ((ulong64)h2 * r0) + ((ulong64)h3 * s4) + ((ulong64)h4 * s3); in s_poly1305_block()
53 …ong64)h0 * r3) + ((ulong64)h1 * r2) + ((ulong64)h2 * r1) + ((ulong64)h3 * r0) + ((ulong64)h4 * s4); in s_poly1305_block()
54 …ong64)h0 * r4) + ((ulong64)h1 * r3) + ((ulong64)h2 * r2) + ((ulong64)h3 * r1) + ((ulong64)h4 * r0); in s_poly1305_block()
61 d4 += c; c = (ulong32)(d4 >> 26); h4 = (ulong32)d4 & 0x3ffffff; in s_poly1305_block()
73 st->h[4] = h4; in s_poly1305_block()
[all …]
/optee_os/core/arch/arm/include/crypto/
H A Dghash-ce-core.h15 uint64_t h4[2]; member
/optee_os/core/arch/arm/crypto/
H A Daes-gcm-ce.c64 ghash_reflect(state->ghash_key.h4, h); in internal_aes_gcm_set_key()