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
i found this issue and also found small bug in code
unsigned int *privateKeys = new unsigned int[8 * totalPoints];
for(int index = 0; index < _points; index++) { splatBigInt(privateKeys, index, exponents[index]); }
correct is unsigned int *privateKeys = new unsigned int[32 * totalPoints];
The text was updated successfully, but these errors were encountered:
How do you run this can you please guide me I have small issue the clibinary is not there . Inbox me please [email protected]
Sorry, something went wrong.
@brichard19 please help me solve issue i'm debuging code few days and this what i found is key always same
No branches or pull requests
i found this issue and also found small bug in code
unsigned int *privateKeys = new unsigned int[8 * totalPoints];
for(int index = 0; index < _points; index++) {
splatBigInt(privateKeys, index, exponents[index]);
}
correct is unsigned int *privateKeys = new unsigned int[32 * totalPoints];
The text was updated successfully, but these errors were encountered: