Home
last modified time | relevance | path

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

/crypto/
Dsha512_generic.c101 u64 a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local
126 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform()
127 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha512_transform()
128 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform()
129 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha512_transform()
130 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform()
131 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha512_transform()
132 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform()
133 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha512_transform()
134 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4]; in sha512_transform()
[all …]
Dseed.c313 t1 = X4 ^ ks[rbase+1]; \
314 t1 ^= t0; \
315 t1 = SS0[byte(t1, 0)] ^ SS1[byte(t1, 1)] ^ \
316 SS2[byte(t1, 2)] ^ SS3[byte(t1, 3)]; \
317 t0 += t1; \
320 t1 += t0; \
321 t1 = SS0[byte(t1, 0)] ^ SS1[byte(t1, 1)] ^ \
322 SS2[byte(t1, 2)] ^ SS3[byte(t1, 3)]; \
323 t0 += t1; \
325 X2 ^= t1;
[all …]
Dcamellia_generic.c344 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) ({ \ argument
348 t1 = ir >> 16; \
350 ^ camellia_sp0222[(u8)(t1 >> 8)] \
351 ^ camellia_sp3033[(u8)(t1)] \
548 u32 il, ir, t0, t1, w0, w1; in camellia_setup128() local
605 w0, w1, il, ir, t0, t1); in camellia_setup128()
609 kll, klr, il, ir, t0, t1); in camellia_setup128()
613 krl, krr, il, ir, t0, t1); in camellia_setup128()
617 w0, w1, il, ir, t0, t1); in camellia_setup128()
655 u32 il, ir, t0, t1, w0, w1; /* temporary variables */ in camellia_setup256() local
[all …]
Dvmac.c256 u64 t1, t2, m1, m2, t; \
260 t1 = pe64_to_cpup(mp+i) + kp[i]; \
262 m2 = MUL32(t1 >> 32, t2); \
263 m1 = MUL32(t1, t2 >> 32); \
264 ADD128(rh, rl, MUL32(t1 >> 32, t2 >> 32), \
265 MUL32(t1, t2)); \
Decc.c1013 u64 t1[ECC_MAX_DIGITS]; in apply_z() local
1015 vli_mod_square_fast(t1, z, curve_prime, ndigits); /* z^2 */ in apply_z()
1016 vli_mod_mult_fast(x1, x1, t1, curve_prime, ndigits); /* x1 * z^2 */ in apply_z()
1017 vli_mod_mult_fast(t1, t1, z, curve_prime, ndigits); /* z^3 */ in apply_z()
1018 vli_mod_mult_fast(y1, y1, t1, curve_prime, ndigits); /* y1 * z^3 */ in apply_z()