aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen/hash/hash.c
blob: ddbdb002294c1aa795349d5724f16deacc6956a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10

#include "hash.h"

#if HASH == HASH_NONE
#include "none.c"
#elif HASH == HASH_SHA1
#include "sha1.c"
#elif HASH == HASH_SHA224 || HASH == HASH_SHA256 || HASH == HASH_SHA384 || HASH == HASH_SHA512
#include "sha2.c"
#endif