There shouldn't be any "*" when entering a password or passphrase

There shouldn't be any "*" when entering a password or passphrase for
better security. Linux/Unix openssh works the same way - without any
"*". Great suggestion by Mark Hahnel in comments of Issue #5
This commit is contained in:
quamrulmina 2015-10-20 19:23:18 -05:00
parent de4ae13f76
commit 89452c8a2f

View File

@ -362,7 +362,7 @@ read_passphrase(const char *prompt, int flags)
}
else {
_putch( (int) '*' ); // show a star in place of what is typed
//_putch( (int) '*' ); // show a star in place of what is typed
len++; // keep reading in the loop
}
}