summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/regress/unittests/sshkey/tests.c
blob: 13f265cdb91b074618e55e4ec7444c407901ac06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 	$OpenBSD: tests.c,v 1.1 2014/06/24 01:14:18 djm Exp $ */
/*
 * Regress test for sshbuf.h buffer API
 *
 * Placed in the public domain
 */

#include "includes.h"

#include <openssl/evp.h>

#include "../test_helper/test_helper.h"

void sshkey_tests(void);
void sshkey_file_tests(void);
void sshkey_fuzz_tests(void);

void
tests(void)
{
	OpenSSL_add_all_algorithms();
	ERR_load_CRYPTO_strings();

	sshkey_tests();
	sshkey_file_tests();
	sshkey_fuzz_tests();
}
OpenPOWER on IntegriCloud