tls: fix whitespace in P256 code
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
93b886f54b
commit
120401249a
@ -100,7 +100,7 @@ static void sp_256_to_bin(sp_digit* r, uint8_t* a)
|
||||
}
|
||||
j = 256 / 8 - 1;
|
||||
a[j] = 0;
|
||||
for (i=0; i<10 && j>=0; i++) {
|
||||
for (i = 0; i < 10 && j >= 0; i++) {
|
||||
b = 0;
|
||||
a[j--] |= r[i] << s; b += 8 - s;
|
||||
if (j < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user