1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-28 01:41:48 +03:00

examples: Use ssh_getpass().

This commit is contained in:
Andreas Schneider
2011-01-23 20:08:25 +01:00
parent 50a119dd0a
commit f3685f0f73
2 changed files with 15 additions and 5 deletions

View File

@ -80,7 +80,12 @@ int authenticate_kbdint(ssh_session session, const char *password) {
if (password && strstr(prompt, "Password:")) {
answer = password;
} else {
answer = getpass(prompt);
buffer[0] = '\0';
if (ssh_getpass(prompt, buffer, sizeof(buffer), 0, 0) < 0) {
return SSH_AUTH_ERROR;
}
answer = buffer;
}
if (ssh_userauth_kbdint_setanswer(session, i, answer) < 0) {
return SSH_AUTH_ERROR;
@ -100,7 +105,7 @@ static void error(ssh_session session){
int authenticate_console(ssh_session session){
int rc;
int method;
char *password;
char password[128] = {0};
char *banner;
// Try to authenticate
@ -112,7 +117,6 @@ int authenticate_console(ssh_session session){
method = ssh_auth_list(session);
while (rc != SSH_AUTH_SUCCESS) {
// Try to authenticate with public key first
if (method & SSH_AUTH_METHOD_PUBLICKEY) {
rc = ssh_userauth_autopubkey(session, NULL);
@ -135,7 +139,10 @@ int authenticate_console(ssh_session session){
}
}
password=getpass("Password: ");
if (ssh_getpass("Password: ", password, sizeof(password), 0, 0) < 0) {
return SSH_AUTH_ERROR;
}
// Try to authenticate with password
if (method & SSH_AUTH_METHOD_PASSWORD) {
rc = ssh_userauth_password(session, NULL, password);

View File

@ -58,7 +58,10 @@ static int auth_callback(const char *prompt, char *buf, size_t len,
*ptr = '\0';
}
} else {
answer = getpass(prompt);
if (ssh_getpass(prompt, buf, len, 0, 0) < 0) {
return -1;
}
return 0;
}
if (answer == NULL) {