summaryrefslogtreecommitdiff
path: root/libs/libaxolotl/src/curve25519/ed25519/main/main.c
blob: a6ff569b9e7538cc6a49e27eab3f228ce5c063c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "tests.h"


int main(int argc, char* argv[])
{
  all_fast_tests(0);
  curvesigs_slow_test(0,           10000);
  xeddsa_slow_test(0,              10000);
  xeddsa_to_curvesigs_slow_test(0, 10000);
  vxeddsa_slow_test(0,             10000000);

  return 0;
}