summaryrefslogtreecommitdiff
path: root/testsuite/meta-aead-test.c
blob: ceeca227dae67a33c5bc9dd38c4053026a8326df (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
#include "testutils.h"
#include "nettle-internal.h"
#include "nettle-meta.h"

const char* aeads[] = {
  "gcm_aes128",
  "gcm_aes192",
  "gcm_aes256",
  "gcm_camellia128",
  "gcm_camellia256",
  "gcm_sm4",
  "eax_aes128",
  "chacha_poly1305",
};

void
test_main(void)
{
  int i,j;
  int count = sizeof(aeads)/sizeof(*aeads);
  for (i = 0; i < count; i++) {
    for (j = 0; NULL != nettle_aeads[j]; j++) {
      if (0 == strcmp(aeads[i], nettle_aeads[j]->name))
        break;
    }
    ASSERT(NULL != nettle_aeads[j]); /* make sure we found a matching aead */
  }
  j = 0;
  while (NULL != nettle_aeads[j])
    j++;
  ASSERT(j == count); /* we are not missing testing any aeads */
}