comparison libtomcrypt/tests/misc_test.c @ 1511:5916af64acd4 fuzz

merge from main
author Matt Johnston <matt@ucc.asn.au>
date Sat, 17 Feb 2018 19:29:51 +0800
parents 6dba84798cd5
children
comparison
equal deleted inserted replaced
1457:32f990cc96b1 1511:5916af64acd4
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
2 *
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
5 *
6 * The library is free for all purposes without any express
7 * guarantee it works.
8 */
9 #include <tomcrypt_test.h>
10
11 int misc_test(void)
12 {
13 #ifdef LTC_HKDF
14 DO(hkdf_test());
15 #endif
16 #ifdef LTC_PKCS_5
17 DO(pkcs_5_test());
18 #endif
19 #ifdef LTC_BASE64
20 DO(base64_test());
21 #endif
22 #ifdef LTC_ADLER32
23 DO(adler32_test());
24 #endif
25 #ifdef LTC_CRC32
26 DO(crc32_test());
27 #endif
28 return 0;
29 }
30
31 /* ref: $Format:%D$ */
32 /* git commit: $Format:%H$ */
33 /* commit time: $Format:%ai$ */