2015-06-22 21:35:41 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup unittests
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Central test setup file for the hashing module
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tests-hashes.h"
|
|
|
|
|
|
|
|
void tests_hashes(void)
|
|
|
|
{
|
|
|
|
TESTS_RUN(tests_hashes_md5_tests());
|
2017-04-24 17:40:25 +02:00
|
|
|
TESTS_RUN(tests_hashes_cmac_tests());
|
2016-01-27 15:07:35 +01:00
|
|
|
TESTS_RUN(tests_hashes_sha1_tests());
|
2020-06-08 15:00:39 +02:00
|
|
|
TESTS_RUN(tests_hashes_sha224_tests());
|
2016-01-29 18:49:42 +01:00
|
|
|
TESTS_RUN(tests_hashes_sha256_tests());
|
2016-02-20 10:26:09 +01:00
|
|
|
TESTS_RUN(tests_hashes_sha256_hmac_tests());
|
2016-02-15 15:27:37 +01:00
|
|
|
TESTS_RUN(tests_hashes_sha256_chain_tests());
|
2023-10-10 15:19:54 +02:00
|
|
|
TESTS_RUN(tests_hashes_sha512_tests());
|
2017-10-26 22:28:09 +02:00
|
|
|
TESTS_RUN(tests_hashes_sha3_tests());
|
2015-06-22 21:35:41 +02:00
|
|
|
}
|