Skip to content

Commit 89452c8

Browse files
committed
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
1 parent de4ae13 commit 89452c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readpass.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ read_passphrase(const char *prompt, int flags)
362362
}
363363
else {
364364

365-
_putch( (int) '*' ); // show a star in place of what is typed
365+
//_putch( (int) '*' ); // show a star in place of what is typed
366366
len++; // keep reading in the loop
367367
}
368368
}

0 commit comments

Comments
 (0)