Files
libopenssh/unittests/sshkey/tests.c
Damien Miller d19d229054 flesh out sshkey tests substantially
use new fuzz framework to fuzz private and pubkey parsing

test loading of RSA1 keys
2012-03-04 21:19:23 +01:00

26 lines
379 B
C

/* $OpenBSD$ */
/*
* Regress test for sshbuf.h buffer API
*
* Placed in the public domain
*/
#include <openssl/evp.h>
#include "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();
}