libssh2/tests/test_auth_pubkey_ok_dsa.c

17 lines
346 B
C
Raw Normal View History

2024-05-07 13:49:03 +08:00
#include "runner.h"
int test(LIBSSH2_SESSION *session)
{
#if LIBSSH2_DSA
/* set in Dockerfile */
return test_auth_pubkey(session, 0,
"libssh2",
NULL,
"key_dsa.pub",
"key_dsa");
#else
(void)session;
return 0;
#endif
}