| 
									
										
										
										
											2017-06-19 15:49:18 +02:00
										 |  |  | /* LibTomCrypt, modular cryptographic library -- Tom St Denis
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LibTomCrypt is a library that provides various cryptographic | 
					
						
							|  |  |  |  * algorithms in a highly modular and flexible manner. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The library is free for all purposes without any express | 
					
						
							|  |  |  |  * guarantee it works. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-11-23 03:04:50 +01:00
										 |  |  | #include  <tomcrypt_test.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int misc_test(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef LTC_HKDF
 | 
					
						
							|  |  |  |    DO(hkdf_test()); | 
					
						
							| 
									
										
										
										
											2014-01-03 22:04:50 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef LTC_PKCS_5
 | 
					
						
							|  |  |  |    DO(pkcs_5_test()); | 
					
						
							| 
									
										
										
										
											2014-03-04 18:04:29 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef LTC_BASE64
 | 
					
						
							|  |  |  |    DO(base64_test()); | 
					
						
							| 
									
										
										
										
											2015-08-22 17:29:46 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef LTC_ADLER32
 | 
					
						
							|  |  |  |    DO(adler32_test()); | 
					
						
							| 
									
										
										
										
											2015-08-23 22:02:42 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef LTC_CRC32
 | 
					
						
							|  |  |  |    DO(crc32_test()); | 
					
						
							| 
									
										
										
										
											2012-11-23 03:04:50 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |    return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-19 13:43:49 +02:00
										 |  |  | /* ref:         $Format:%D$ */ | 
					
						
							|  |  |  | /* git commit:  $Format:%H$ */ | 
					
						
							|  |  |  | /* commit time: $Format:%ai$ */ |