| 594 | } |
| 595 | |
| 596 | int 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 | |
| 607 | int FTPClientWrapperSSH::authenticate_kbinteractive(ssh_session session) { |
| 608 | int rc; |
nothing calls this directly
no outgoing calls
no test coverage detected