wolfcrypt/src/sp_int.c: add cast in sp_to_unsigned_bin_len_ct() to mollify -Wconversion.

This commit is contained in:
Daniel Pouzzner 2023-10-25 23:40:21 -05:00
parent fc858ec33b
commit 7821c48e65

View File

@ -17813,7 +17813,7 @@ int sp_to_unsigned_bin_len_ct(const sp_int* a, byte* out, int outSz)
d = a->dp[i];
/* Place each byte of a digit into the buffer. */
for (b = 0; (j >= 0) && (b < SP_WORD_SIZEOF); b++) {
out[j--] = (byte)(d & mask);
out[j--] = (byte)((sp_digit)d & mask);
d >>= 8;
}
mask &= (sp_digit)0 - (i < a->used - 1);