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......
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.
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.