Switch to full style
What's behind JSP & Servlets
Post a reply

how to encrypt password in jsp

Fri Oct 24, 2008 5:39 pm

i'm a new member of this groups.
now i'm studying web application with jsp

how can i encrypt password from HTML form and
store it in database???

i use mysql for my database

can anyone help me......



Re: how to encrypt password in jsp

Fri Oct 24, 2008 5:43 pm

There are 2 ways you can do this:
1) Use something like DES encoding (I believe the package is
javax.encryption). This is the preferred way.
2) Come up with your own encryption algorithm. Here's one way of doing it:
a) Pad the incoming password with null '\0' characters
b) Come up with 10 randomization patterns.
c) Create a 1st digit. This tells which randomization pattern to use.
d) Insert random characters according to the randomization pattern
e) Insert substitute characters according to some algorithm.

The more you complex you can make e), the better.

Post a reply
  Related Posts  to : how to encrypt password in jsp
 Encrypt connection string     -  
 generate password using php     -  
 Protect page using password in PHP     -  
 php Password protect a page     -  
 Input username and password in JAVA     -  
 simple password Strength checker     -  
 AJAX Login Code getting username and password dynamically .     -  
 Password Security Manager Access File Java     -  
 Mile200: Removing Username, Password & Login from Header     -  
 Encrypt/Decrypt a file from source file to target file.     -