Skip to content
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

Merged
merged 7 commits into from
Mar 29, 2025
Merged

Pre release code cleanup #1

merged 7 commits into from
Mar 29, 2025

Conversation

0xMMBD
Copy link
Member

@0xMMBD 0xMMBD commented Mar 26, 2025

No description provided.

0xMMBD added 3 commits March 25, 2025 19:32
- 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
@0xMMBD 0xMMBD self-assigned this Mar 26, 2025
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

This pointer might have type
unsigned long long[960]
(size 7680), but this pointer arithmetic is done with type point_precomp_t * (size 96).
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

This comment appears to contain commented-out code.

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.

Suggested changeset 1
deps/FourQ_ARM/eccp2.c

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/deps/FourQ_ARM/eccp2.c b/deps/FourQ_ARM/eccp2.c
--- a/deps/FourQ_ARM/eccp2.c
+++ b/deps/FourQ_ARM/eccp2.c
@@ -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]));
         }
EOF
@@ -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]));
}
Copilot is powered by AI and may make mistakes. Always verify output.
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.
@0xMMBD 0xMMBD force-pushed the pre-release-code-cleanup branch from 38c4289 to d93ffed Compare March 26, 2025 15:45
@0xMMBD 0xMMBD merged commit db83b01 into develop Mar 29, 2025
36 of 43 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant