tls: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
d728a30c21
commit
e52e43c72f
@ -506,12 +506,10 @@ static void sp_256_sqr_10(sp_digit* r, const sp_digit* a)
|
||||
break;
|
||||
if (j < 0)
|
||||
continue;
|
||||
|
||||
c += ((int64_t)a[i]) * a[j] * 2;
|
||||
}
|
||||
if (i == j)
|
||||
c += ((int64_t)a[i]) * a[i];
|
||||
|
||||
r[k + 2] += c >> 52;
|
||||
r[k + 1] = (c >> 26) & 0x3ffffff;
|
||||
c = (c & 0x3ffffff) << 26;
|
||||
|
Loading…
Reference in New Issue
Block a user