view demos/test/cipher_hash_test.c @ 20:b939f2d4431e libtomcrypt

Include files accidentally zeroed when merging 0.96 release
author Matt Johnston <matt@ucc.asn.au>
date Tue, 15 Jun 2004 16:47:55 +0000
parents 6362d3854bb4
children 5d99163f7e32
line wrap: on
line source

/* test the ciphers and hashes using their built-in self-tests */

#include "test.h"

int cipher_hash_test(void)
{
   int x;
   
   /* test ciphers */
   for (x = 0; cipher_descriptor[x].name != NULL; x++) {
      DO(cipher_descriptor[x].test());
   }
   
   /* test hashes */
   for (x = 0; hash_descriptor[x].name != NULL; x++) {
      DO(hash_descriptor[x].test());
   }
   
   return 0;
}