We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
this kind of code are tricking to translate in jasmin:
k = 0; for (i = 0; i < K; ++i) { for (j = 0; j < N; ++j) { h->vec[i].coeffs[j] = 0; } if (sig[OMEGA + i] < k || sig[OMEGA + i] > OMEGA) { return 1; } for (j = k; j < sig[OMEGA + i]; ++j) { /* Coefficients are ordered for strong unforgeability */ if (j > k && sig[j] <= sig[j - 1]) { return 1; } h->vec[i].coeffs[sig[j]] = 1; } k = sig[OMEGA + i]; } /* Extra indices are zero for strong unforgeability */ for (j = k; j < OMEGA; ++j) { if (sig[j]) { return 1; } }
I think being able to exit loop early will help.
The text was updated successfully, but these errors were encountered:
If I understand correctly, what you would like to have is a break keyword ?
break
Sorry, something went wrong.
Yes
No branches or pull requests
this kind of code are tricking to translate in jasmin:
I think being able to exit loop early will help.
The text was updated successfully, but these errors were encountered: