MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / authenticate_password

Method authenticate_password

src/FTPClientWrapperSSH.cpp:596–605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

594}
595
596int FTPClientWrapperSSH::authenticate_password(ssh_session session) {
597 int rc;
598
599 rc = ssh_userauth_password(session, NULL, m_password);
600 if (rc == SSH_AUTH_DENIED) {
601 OutMsg("[SFTP] Password authentication denied.");
602 }
603
604 return rc;
605}
606
607int FTPClientWrapperSSH::authenticate_kbinteractive(ssh_session session) {
608 int rc;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected