-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pre release code cleanup #1
Conversation
- Update the application version to 0.1.4 - Refactor key generation logic for Qubic seed and public key
- Added optimization option in Makefile - Updated encoding, decoding, Montgomery conversion functions in crypto_util.c
table_lookup_fixed_base(((point_precomp_t*)&FIXED_BASE_TABLE)+(v-j-1)*(1 << (w-1)), S, digit, digits[d-j*e+ii-e]); | ||
eccmadd(S, R); // R = R+S using representations (X,Y,Z,Ta,Tb) <- (X,Y,Z,Ta,Tb) + (x+y,y-x,2dt) | ||
table_lookup_fixed_base( | ||
((point_precomp_t*) &FIXED_BASE_TABLE) + (v - j - 1) * (1 << (w - 1)), |
Check failure
Code scanning / CodeQL
Suspicious pointer scaling High
unsigned long long[960]
for (j = 1; j < NWORDS64_ORDER; j++) { | ||
scalar[j] = scalar[j] + carry; | ||
carry = (carry & (uint64_t) is_digit_zero_ct( | ||
(digit_t) scalar[j])); // carry = (scalar[j] < temp); |
Check notice
Code scanning / CodeQL
Commented-out code Note
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 8 days ago
To fix the problem, we should remove the commented-out code. This will make the code cleaner and reduce potential confusion for future developers. The specific change involves deleting the line // carry = (scalar[j] < temp);
from the file deps/FourQ_ARM/eccp2.c
.
-
Copy modified lines R885-R886
@@ -884,4 +884,4 @@ | ||
scalar[j] = scalar[j] + carry; | ||
carry = (carry & (uint64_t) is_digit_zero_ct( | ||
(digit_t) scalar[j])); // carry = (scalar[j] < temp); | ||
carry = (carry & (uint64_t) is_digit_zero_ct( | ||
(digit_t) scalar[j])); | ||
} |
The test for app version has been updated. The expected version number was previously "0.1.2", but it has now been changed to "0.1.4". This change ensures that the test is aligned with the current application version.
38c4289
to
d93ffed
Compare
No description provided.