mirror of
https://github.com/openssh/libopenssh
synced 2026-04-16 09:45:53 +00:00
26 lines
379 B
C
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();
|
|
}
|