initial version of SQIsign
Co-authored-by: Jorge Chavez-Saab <jorgechavezsaab@gmail.com> Co-authored-by: Maria Corte-Real Santos <36373796+mariascrs@users.noreply.github.com> Co-authored-by: Luca De Feo <github@defeo.lu> Co-authored-by: Jonathan Komada Eriksen <jonathan.eriksen97@gmail.com> Co-authored-by: Basil Hess <bhe@zurich.ibm.com> Co-authored-by: Antonin Leroux <18654258+tonioecto@users.noreply.github.com> Co-authored-by: Patrick Longa <plonga@microsoft.com> Co-authored-by: Lorenz Panny <lorenz@yx7.cc> Co-authored-by: Francisco Rodríguez-Henríquez <francisco.rodriguez@tii.ae> Co-authored-by: Sina Schaeffler <108983332+syndrakon@users.noreply.github.com> Co-authored-by: Benjamin Wesolowski <19474926+Calodeon@users.noreply.github.com>
This commit is contained in:
295
src/gf/ref/lvl3/test/test_fp.c
Normal file
295
src/gf/ref/lvl3/test/test_fp.c
Normal file
@@ -0,0 +1,295 @@
|
||||
#include "test_extras.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <bench.h>
|
||||
|
||||
// Global constants
|
||||
extern const digit_t p[NWORDS_FIELD];
|
||||
|
||||
// Benchmark and test parameters
|
||||
static int BENCH_LOOPS = 100000; // Number of iterations per bench
|
||||
static int TEST_LOOPS = 100000; // Number of iterations per test
|
||||
|
||||
|
||||
bool fp_test()
|
||||
{ // Tests for the field arithmetic
|
||||
bool OK = true;
|
||||
int n, passed;
|
||||
fp_t a, b, c, d, e, f, ma, mb, mc, md, me, mf;
|
||||
|
||||
printf("\n--------------------------------------------------------------------------------------------------------\n\n");
|
||||
printf("Testing field arithmetic over GF(p): \n\n");
|
||||
|
||||
// Field addition
|
||||
passed = 1;
|
||||
for (n=0; n<TEST_LOOPS; n++)
|
||||
{
|
||||
fprandom_test(a); fprandom_test(b); fprandom_test(c); fprandom_test(d);
|
||||
|
||||
fp_add(d, a, b); fp_add(e, d, c); // e = (a+b)+c
|
||||
fp_add(d, b, c); fp_add(f, d, a); // f = a+(b+c)
|
||||
if (compare_words(e, f, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_add(d, a, b); // d = a+b
|
||||
fp_add(e, b, a); // e = b+a
|
||||
if (compare_words(d, e, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_set(b, 0);
|
||||
fp_add(d, a, b); // d = a+0
|
||||
if (compare_words(a, d, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_set(b, 0);
|
||||
fp_neg(d, a);
|
||||
fp_add(e, a, d); // e = a+(-a)
|
||||
if (compare_words(e, b, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
}
|
||||
if (passed==1) printf(" GF(p) addition tests ............................................ PASSED");
|
||||
else { printf(" GF(p) addition tests... FAILED"); printf("\n"); return false; }
|
||||
printf("\n");
|
||||
|
||||
// Field subtraction
|
||||
passed = 1;
|
||||
for (n=0; n<TEST_LOOPS; n++)
|
||||
{
|
||||
fprandom_test(a); fprandom_test(b); fprandom_test(c); fprandom_test(d);
|
||||
|
||||
fp_sub(d, a, b); fp_sub(e, d, c); // e = (a-b)-c
|
||||
fp_add(d, b, c); fp_sub(f, a, d); // f = a-(b+c)
|
||||
if (compare_words(e, f, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_sub(d, a, b); // d = a-b
|
||||
fp_sub(e, b, a);
|
||||
fp_neg(e, e); // e = -(b-a)
|
||||
if (compare_words(d, e, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_set(b, 0);
|
||||
fp_sub(d, a, b); // d = a-0
|
||||
if (compare_words(a, d, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_set(b, 0);
|
||||
fp_sub(e, a, a); // e = a+(-a)
|
||||
if (compare_words(e, b, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
}
|
||||
if (passed==1) printf(" GF(p) subtraction tests ......................................... PASSED");
|
||||
else { printf(" GF(p) subtraction tests... FAILED"); printf("\n"); return false; }
|
||||
printf("\n");
|
||||
|
||||
// Field multiplication
|
||||
passed = 1;
|
||||
for (n=0; n<TEST_LOOPS; n++)
|
||||
{
|
||||
fprandom_test(a); fprandom_test(b); fprandom_test(c);
|
||||
|
||||
fp_tomont(ma, a);
|
||||
fp_frommont(c, ma);
|
||||
if (compare_words(a, c, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_tomont(ma, a); fp_tomont(mb, b); fp_tomont(mc, c);
|
||||
fp_mul(md, ma, mb); fp_mul(me, md, mc); // e = (a*b)*c
|
||||
fp_mul(md, mb, mc); fp_mul(mf, md, ma); // f = a*(b*c)
|
||||
fp_frommont(e, me);
|
||||
fp_frommont(f, mf);
|
||||
if (compare_words(e, f, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_tomont(ma, a); fp_tomont(mb, b); fp_tomont(mc, c);
|
||||
fp_add(md, mb, mc); fp_mul(me, ma, md); // e = a*(b+c)
|
||||
fp_mul(md, ma, mb); fp_mul(mf, ma, mc); fp_add(mf, md, mf); // f = a*b+a*c
|
||||
fp_frommont(e, me);
|
||||
fp_frommont(f, mf);
|
||||
if (compare_words(e, f, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_tomont(ma, a); fp_tomont(mb, b);
|
||||
fp_mul(md, ma, mb); // d = a*b
|
||||
fp_mul(me, mb, ma); // e = b*a
|
||||
fp_frommont(d, md);
|
||||
fp_frommont(e, me);
|
||||
if (compare_words(d, e, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_tomont(ma, a);
|
||||
fp_set(b, 1); fp_tomont(mb, b);
|
||||
fp_mul(md, ma, mb); // d = a*1
|
||||
fp_frommont(a, ma);
|
||||
fp_frommont(d, md);
|
||||
if (compare_words(a, d, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_set(b, 0);
|
||||
fp_tomont(mb, b);
|
||||
fp_mul(md, ma, mb); // d = a*0
|
||||
fp_frommont(d, md);
|
||||
if (compare_words(b, d, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
}
|
||||
if (passed==1) printf(" GF(p) multiplication tests ...................................... PASSED");
|
||||
else { printf(" GF(p) multiplication tests... FAILED"); printf("\n"); return false; }
|
||||
printf("\n");
|
||||
|
||||
// Field squaring
|
||||
passed = 1;
|
||||
for (n=0; n<TEST_LOOPS; n++)
|
||||
{
|
||||
fprandom_test(a);
|
||||
|
||||
fp_tomont(ma, a);
|
||||
fp_sqr(mb, ma); // b = a^2
|
||||
fp_mul(mc, ma, ma); // c = a*a
|
||||
fp_frommont(b, mb);
|
||||
fp_frommont(c, mc);
|
||||
if (compare_words(b, c, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
|
||||
fp_set(a, 0); fp_tomont(ma, a);
|
||||
fp_sqr(md, ma); // d = 0^2
|
||||
if (compare_words(ma, md, NWORDS_FIELD)!=0) { passed=0; break; }
|
||||
}
|
||||
if (passed==1) printf(" GF(p) squaring tests............................................. PASSED");
|
||||
else { printf(" GF(p) squaring tests... FAILED"); printf("\n"); return false; }
|
||||
printf("\n");
|
||||
|
||||
// Field inversion
|
||||
passed = 1;
|
||||
for (n = 0; n < TEST_LOOPS; n++)
|
||||
{
|
||||
fprandom_test(a);
|
||||
|
||||
fp_tomont(ma, a);
|
||||
fp_set(d, 1);
|
||||
memcpy(mb, ma, RADIX/8 * NWORDS_FIELD);
|
||||
fp_inv(ma);
|
||||
fp_mul(mc, ma, mb); // c = a*a^-1
|
||||
fp_frommont(c, mc);
|
||||
if (compare_words(c, d, NWORDS_FIELD) != 0) { passed = 0; break; }
|
||||
|
||||
fp_set(a, 0);
|
||||
fp_set(d, 0);
|
||||
fp_inv(a); // c = 0^-1
|
||||
if (compare_words(a, d, NWORDS_FIELD) != 0) { passed = 0; break; }
|
||||
}
|
||||
if (passed == 1) printf(" GF(p) inversion tests............................................ PASSED");
|
||||
else { printf(" GF(p) inversion tests... FAILED"); printf("\n"); return false; }
|
||||
printf("\n");
|
||||
|
||||
// Square root and square detection
|
||||
passed = 1;
|
||||
for (n = 0; n < TEST_LOOPS; n++)
|
||||
{
|
||||
fprandom_test(a);
|
||||
|
||||
fp_tomont(ma, a);
|
||||
fp_sqr(mc, ma);
|
||||
fp_frommont(c, mc); // c = a^2
|
||||
if (fp_is_square(mc) != 1) { passed = 0; break; }
|
||||
|
||||
fp_sqrt(mc); // c = a = sqrt(c)
|
||||
fp_neg(md, mc);
|
||||
fp_frommont(c, mc);
|
||||
fp_frommont(d, md);
|
||||
if ((compare_words(a, c, NWORDS_FIELD) != 0) && (compare_words(a, d, NWORDS_FIELD) != 0)) { passed = 0; break; }
|
||||
}
|
||||
if (passed == 1) printf(" Square root, square tests........................................ PASSED");
|
||||
else { printf(" Square root, square tests... FAILED"); printf("\n"); return false; }
|
||||
printf("\n");
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
bool fp_run()
|
||||
{
|
||||
bool OK = true;
|
||||
int n;
|
||||
unsigned long long cycles, cycles1, cycles2;
|
||||
fp_t a, b, c;
|
||||
|
||||
printf("\n--------------------------------------------------------------------------------------------------------\n\n");
|
||||
printf("Benchmarking field arithmetic: \n\n");
|
||||
|
||||
fprandom_test(a); fprandom_test(b); fprandom_test(c);
|
||||
|
||||
// GF(p) addition
|
||||
cycles = 0;
|
||||
for (n=0; n<BENCH_LOOPS; n++)
|
||||
{
|
||||
cycles1 = cpucycles();
|
||||
fp_add(c, a, b);
|
||||
cycles2 = cpucycles();
|
||||
cycles = cycles+(cycles2-cycles1);
|
||||
}
|
||||
printf(" GF(p) addition runs in .......................................... %7lld cycles", cycles/BENCH_LOOPS);
|
||||
printf("\n");
|
||||
|
||||
// GF(p) subtraction
|
||||
cycles = 0;
|
||||
for (n=0; n<BENCH_LOOPS; n++)
|
||||
{
|
||||
cycles1 = cpucycles();
|
||||
fp_sub(c, a, b);
|
||||
cycles2 = cpucycles();
|
||||
cycles = cycles+(cycles2-cycles1);
|
||||
}
|
||||
printf(" GF(p) subtraction runs in ....................................... %7lld cycles", cycles/BENCH_LOOPS);
|
||||
printf("\n");
|
||||
|
||||
// GF(p) multiplication
|
||||
cycles = 0;
|
||||
for (n=0; n<BENCH_LOOPS; n++)
|
||||
{
|
||||
cycles1 = cpucycles();
|
||||
fp_mul(c, a, b);
|
||||
cycles2 = cpucycles();
|
||||
cycles = cycles+(cycles2-cycles1);
|
||||
}
|
||||
printf(" GF(p) multiplication runs in .................................... %7lld cycles", cycles/BENCH_LOOPS);
|
||||
printf("\n");
|
||||
|
||||
// GF(p) inversion
|
||||
cycles = 0;
|
||||
for (n = 0; n < BENCH_LOOPS; n++)
|
||||
{
|
||||
cycles1 = cpucycles();
|
||||
fp_inv(a);
|
||||
cycles2 = cpucycles();
|
||||
cycles = cycles + (cycles2 - cycles1);
|
||||
}
|
||||
printf(" GF(p) inversion runs in ......................................... %7lld cycles", cycles/BENCH_LOOPS);
|
||||
printf("\n");
|
||||
|
||||
// GF(p) square root
|
||||
cycles = 0;
|
||||
for (n = 0; n < BENCH_LOOPS; n++)
|
||||
{
|
||||
cycles1 = cpucycles();
|
||||
fp_sqrt(a);
|
||||
cycles2 = cpucycles();
|
||||
cycles = cycles + (cycles2 - cycles1);
|
||||
}
|
||||
printf(" GF(p) square root runs in ....................................... %7lld cycles", cycles/BENCH_LOOPS);
|
||||
printf("\n");
|
||||
|
||||
// Square checking
|
||||
cycles = 0;
|
||||
for (n = 0; n < BENCH_LOOPS; n++)
|
||||
{
|
||||
cycles1 = cpucycles();
|
||||
fp_is_square(a);
|
||||
cycles2 = cpucycles();
|
||||
cycles = cycles + (cycles2 - cycles1);
|
||||
}
|
||||
printf(" Square checking runs in ......................................... %7lld cycles", cycles/BENCH_LOOPS);
|
||||
printf("\n");
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
if (argc < 3) {
|
||||
printf("Please enter an argument: 'test' or 'bench' and <reps>\n");
|
||||
exit(1);
|
||||
}
|
||||
if (!strcmp(argv[1], "test")) {
|
||||
TEST_LOOPS = atoi(argv[2]);
|
||||
return !fp_test();
|
||||
} else if (!strcmp(argv[1], "bench")) {
|
||||
BENCH_LOOPS = atoi(argv[2]);
|
||||
return !fp_run();
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user