Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions ssh2/c_ssh2.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@ cdef extern from "libssh2.h" nogil:
(void *))
int libssh2_userauth_password(LIBSSH2_SESSION *session,
const char *username, const char *password)
int libssh2_userauth_keyboard_interactive_ex(LIBSSH2_SESSION *session,
const char *username,
unsigned int username_len,
const char *password,
unsigned int password_len,
(void *))
int libssh2_userauth_keyboard_interactive(LIBSSH2_SESSION *session,
const char *username,
const char *password)
int libssh2_userauth_publickey_fromfile_ex(LIBSSH2_SESSION *session,
const char *username,
unsigned int username_len,
Expand Down
Loading