1 /* 	$OpenBSD: tests.c,v 1.1 2014/06/24 01:14:18 djm Exp $ */
2 /*
3  * Regress test for sshbuf.h buffer API
4  *
5  * Placed in the public domain
6  */
7 
8 #include "includes.h"
9 
10 #include <openssl/evp.h>
11 
12 #include "../test_helper/test_helper.h"
13 
14 void sshkey_tests(void);
15 void sshkey_file_tests(void);
16 void sshkey_fuzz_tests(void);
17 
18 void
19 tests(void)
20 {
21 	OpenSSL_add_all_algorithms();
22 	ERR_load_CRYPTO_strings();
23 
24 	sshkey_tests();
25 	sshkey_file_tests();
26 	sshkey_fuzz_tests();
27 }
28