I am trying to mask a password in Java. Sun java has suggested a way to mask a password as follows.
Masking a password
It uses a simple way to do that.
public void run () {
stop = true;
while (stop) {
System.out.print("\010*");
try {
Thread.currentThread().sleep(1);
} catch(InterruptedException ie) {
ie.printStackTrace();
}
}
}
But this approach has several drawbacks.
If the user uses the arrow keys + delete keys the password gets revealed.
If the user accidentally press 2 keys at the same time (Extremely high typing speed) some characters does not get masked.
Do you guys think of any way that can get a 100% correct masking?
To mask the password field, use the setEchoChar method. For example, to set the echo char to an asterisk, you would do: TextField password = new TextField(8); password.
Password masking is the act of hiding passwords as bullets or asterisks when the user enters the password. Password masking is an attempt to protect the user against shoulder surfers who look at the screen.
Use the JPasswordField which has nice function jPasswordField. getPassword(); to get the password as char[] to work with. Use jPasswordField1. setEchoChar('*') to mask the password characters with * .
Use Console.readPassword().
You can now use System.console();
Console c = System.console();
if (c == null) {
System.err.println("No console.");
System.exit(1);
}
char [] password = c.readPassword("Enter your password: ");
Using certain syscalls (on windows and unix) you can disable echoing of characters to console. This is what System.console() does, but it works also in Java.
I'm using JNA to map certain syscall of unix and windows in a private branch of jline:
If you need code example leave a comment.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With