BeRTOS
benchmarks.h
00001 #ifndef SEC_BENCHMARKS_H
00002 #define SEC_BENCHMARKS_H
00003 
00004 #include <sec/hash.h>
00005 #include <sec/prng.h>
00006 #include <sec/cipher.h>
00007 
00008 void hash_benchmark(Hash *h, const char *hname, int numk);
00009 void prng_benchmark(PRNG *prng, const char *hname, int numk);
00010 void cipher_benchmark(BlockCipher *c, const char *cname, int msg_len);
00011 
00012 #endif /* SEC_BENCHMARKS_H */