2014-12-11 00:41:15 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Philipp Rosenkranz
|
2015-04-02 08:56:18 +02:00
|
|
|
* Copyright (C) 2014 Nico von Geyso
|
2014-12-11 00:41:15 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tests-crypto.h"
|
|
|
|
|
2019-08-20 12:06:44 +02:00
|
|
|
int main(void)
|
2014-12-11 00:41:15 +01:00
|
|
|
{
|
2019-08-20 12:06:44 +02:00
|
|
|
TESTS_START();
|
2018-10-23 14:06:15 +02:00
|
|
|
TESTS_RUN(tests_crypto_helper_tests());
|
2015-06-21 09:50:14 +02:00
|
|
|
TESTS_RUN(tests_crypto_chacha_tests());
|
2018-05-29 20:28:12 +02:00
|
|
|
TESTS_RUN(tests_crypto_poly1305_tests());
|
2018-10-21 21:34:29 +02:00
|
|
|
TESTS_RUN(tests_crypto_chacha20poly1305_tests());
|
2015-04-02 08:56:18 +02:00
|
|
|
TESTS_RUN(tests_crypto_aes_tests());
|
|
|
|
TESTS_RUN(tests_crypto_cipher_tests());
|
|
|
|
TESTS_RUN(tests_crypto_modes_ccm_tests());
|
2019-04-23 10:36:31 +02:00
|
|
|
TESTS_RUN(tests_crypto_modes_ocb_tests());
|
2015-04-02 08:56:18 +02:00
|
|
|
TESTS_RUN(tests_crypto_modes_ecb_tests());
|
|
|
|
TESTS_RUN(tests_crypto_modes_cbc_tests());
|
|
|
|
TESTS_RUN(tests_crypto_modes_ctr_tests());
|
2019-08-20 12:06:44 +02:00
|
|
|
TESTS_END();
|
|
|
|
return 0;
|
2014-12-11 00:41:15 +01:00
|
|
|
}
|