Merge pull request #4657 from SparkiDev/sakke_cond_add

SAKKE: fixup cond add to use all words
This commit is contained in:
Marco Oliverio 2021-12-16 07:40:13 +01:00 committed by GitHub
commit fa913f797a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35767,6 +35767,7 @@ static void sp_1024_cond_add_42(sp_digit* r, const sp_digit* a,
r[i + 7] = a[i + 7] + (b[i + 7] & m);
}
r[40] = a[40] + (b[40] & m);
r[41] = a[41] + (b[41] & m);
#endif /* WOLFSSL_SP_SMALL */
}