Mercurial > dropbear
annotate demos/test/cipher_hash_test.c @ 125:d16fc1b2223d libtomcrypt
merge of 8231809d2509aa54773443786e3123766438d924
and e30f886c9c14efb01f49297b3fb6b97c8868fd88
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 14 Sep 2004 13:28: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 } |