tomcrypt/tests/cipher_hash_test.c

39 lines
790 B
C
Raw Normal View History

2004-05-30 22:36:47 -04:00
/* test the ciphers and hashes using their built-in self-tests */
2005-04-17 07:37:13 -04:00
#include <tomcrypt_test.h>
2004-05-30 22:36:47 -04:00
int cipher_hash_test(void)
{
2004-08-06 12:42:41 -04:00
int x;
2004-05-30 22:36:47 -04:00
/* test ciphers */
for (x = 0; cipher_descriptor[x].name != NULL; x++) {
DOX(cipher_descriptor[x].test(), cipher_descriptor[x].name);
2004-05-30 22:36:47 -04:00
}
2017-04-24 15:36:25 -04:00
/* stream ciphers */
2017-04-24 15:55:55 -04:00
#ifdef LTC_CHACHA
DO(chacha_test());
#endif
2017-04-24 15:36:25 -04:00
#ifdef LTC_RC4_STREAM
DO(rc4_stream_test());
2017-04-24 15:36:25 -04:00
#endif
#ifdef LTC_SOBER128_STREAM
DO(sober128_stream_test());
2017-04-24 15:36:25 -04:00
#endif
2004-05-30 22:36:47 -04:00
/* test hashes */
for (x = 0; hash_descriptor[x].name != NULL; x++) {
DOX(hash_descriptor[x].test(), hash_descriptor[x].name);
2004-05-30 22:36:47 -04:00
}
2017-03-22 16:22:00 -04:00
/* SHAKE128 + SHAKE256 tests are a bit special */
DOX(sha3_shake_test(), "sha3_shake");
2004-05-30 22:36:47 -04:00
return 0;
}
2005-06-08 20:08:13 -04:00
/* $Source$ */
/* $Revision$ */
/* $Date$ */