annotate demos/test/cipher_hash_test.c @ 50:c61e66431001
libtomcrypt
Merge of the normal Dropbear makefile:
- Don't include mpi.o, since it does Bad Things (tm) (wrt LTM)
- Don't try to make clean in tests if it doesn't exist (infinite looping
makefiles, mmmmm)
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Sat, 07 Aug 2004 16:33:31 +0000 |
parents |
6362d3854bb4 |
children |
5d99163f7e32 |
rev |
line source |
15
|
1 /* test the ciphers and hashes using their built-in self-tests */ |
|
2 |
|
3 #include "test.h" |
|
4 |
|
5 int cipher_hash_test(void) |
|
6 { |
|
7 int x; |
|
8 |
|
9 /* test ciphers */ |
|
10 for (x = 0; cipher_descriptor[x].name != NULL; x++) { |
|
11 DO(cipher_descriptor[x].test()); |
|
12 } |
|
13 |
|
14 /* test hashes */ |
|
15 for (x = 0; hash_descriptor[x].name != NULL; x++) { |
|
16 DO(hash_descriptor[x].test()); |
|
17 } |
|
18 |
|
19 return 0; |
|
20 } |