• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

How to read password in scrambled format

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all, In one of my application , i have to read password in scrambled format, so that no body can see that password in the script. When we run the script, it accept the correct password...
 
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there a question?
 
Ranch Hand
Posts: 802
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you could add a keyListener to the textfield, and as they hit any

charater keys and Digit keys, diplay '*', but update a private String,

so you dont loose the password..

Justin
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Justin Fox:
you could add a keyListener to the textfield...



Or use JPasswordField...

But he said something about a "script", so it's not clear if this is even Java, let alone a Java GUI application. Let's see if he can clear this up for us.
 
Justin Fox
Ranch Hand
Posts: 802
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
k, I saw the script too, but I thought maybe he was just refering to the
textfield display.

Justin
 
Ranch Hand
Posts: 387
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I could be wrong but I think what he means is there's a file on the harddrive with the password saved in it, but he doesn't want that password to be saved in clear text. So if someone sat down at the comp. they wouldn't be able to read the password when looking at the file.

If that's the case, you want to use encryption (probably just hash the password). Look at bouncycastle for a VERY good, free library for doing everything you'll need.
 
reply
    Bookmark Topic Watch Topic
  • New Topic