Remove tag files.
[bertos.git] / bertos / sec / benchmarks.h
1 #ifndef SEC_BENCHMARKS_H
2 #define SEC_BENCHMARKS_H
3
4 #include <sec/hash.h>
5 #include <sec/prng.h>
6 #include <sec/cipher.h>
7
8 void hash_benchmark(Hash *h, const char *hname, int numk);
9 void prng_benchmark(PRNG *prng, const char *hname, int numk);
10 void cipher_benchmark(BlockCipher *c, const char *cname, int msg_len);
11
12 #endif /* SEC_BENCHMARKS_H */