Unicode C
Unicode C
Start SFTP Keyboard-Interactive Authentication
See more SFTP Examples
Demonstrates the Chilkat SFtp.StartKeyboardAuth method, which begins keyboard-interactive authentication. The only argument is the login name. It returns XML describing the server's prompts, which are answered with ContinueKeyboardAuth.
Background: Keyboard-interactive is the prompt-driven authentication method: rather than assuming a single password, the server sends one or more questions — a password, a one-time code, a security question — and the client answers each. This is how SFTP supports two-factor and other challenge-response schemes. The returned XML tells you exactly what to ask and whether to mask the input.
Chilkat Unicode C Downloads
#include <C_CkSFtpW.h>
void ChilkatSample(void)
{
BOOL success;
HCkSFtpW sftp;
int port;
const wchar_t *infoRequestXml;
success = FALSE;
// Demonstrates the SFtp.StartKeyboardAuth method, which begins keyboard-interactive
// authentication. The only argument is the login name. It returns XML describing the server's
// prompts, which are answered with ContinueKeyboardAuth.
sftp = CkSFtpW_Create();
// Step 1: Connect the SSH transport. Port 22 is the usual port.
port = 22;
success = CkSFtpW_Connect(sftp,L"sftp.example.com",port);
if (success == FALSE) {
wprintf(L"%s\n",CkSFtpW_lastErrorText(sftp));
CkSFtpW_Dispose(sftp);
return;
}
// Begin keyboard-interactive authentication. The returned XML describes the server's prompts.
infoRequestXml = CkSFtpW_startKeyboardAuth(sftp,L"mySshLogin");
if (CkSFtpW_getLastMethodSuccess(sftp) == FALSE) {
wprintf(L"%s\n",CkSFtpW_lastErrorText(sftp));
CkSFtpW_Dispose(sftp);
return;
}
wprintf(L"%s\n",infoRequestXml);
// Answer the prompt(s) with ContinueKeyboardAuth, then call InitializeSftp.
CkSFtpW_Disconnect(sftp);
CkSFtpW_Dispose(sftp);
}