summaryrefslogtreecommitdiff
path: root/testsuite/ecc-dup-test.c
blob: c7fefdb799c09fab290247d78f1ba09bf41be526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "testutils.h"

void
test_main (void)
{
  unsigned i;

  for (i = 0; ecc_curves[i]; i++)
    {
      const struct ecc_curve *ecc = ecc_curves[i];
      mp_limb_t *g = xalloc_limbs (ecc_size_j (ecc));
      mp_limb_t *p = xalloc_limbs (ecc_size_j (ecc));
      mp_limb_t *scratch = xalloc_limbs (ecc->dup_itch);

      test_ecc_get_g (i, g);

      if (ecc->p.bit_size == 255 || ecc->p.bit_size == 448)
	{
	  mp_limb_t *z = xalloc_limbs (ecc_size_j (ecc));

	  /* Zero point has x = 0, y = 1, z = 1 */
	  mpn_zero (z, 3*ecc->p.size);
	  z[ecc->p.size] = z[2*ecc->p.size] = 1;
	  
	  ecc->dup (ecc, p, z, scratch);
	  test_ecc_mul_h (i, 0, p);

	  free (z);
	}

      ecc->dup (ecc, p, g, scratch);
      test_ecc_mul_h (i, 2, p);

      ecc->dup (ecc, p, p, scratch);
      test_ecc_mul_h (i, 4, p);

      free (p);
      free (g);
      free (scratch);
    }
}