|
-
Oct 15th, 2002, 01:13 AM
#1
Thread Starter
New Member
php encryption
Sir,
will you help me on how to secure my data using two way encrytion . . .
encryption
and
decryption process . . .
-
Oct 15th, 2002, 01:04 PM
#2
Frenzied Member
you should use a one way only. md5() is one way and it is pretty secure. if there is a decode than that just leaves the dat to be crasked.
-
Oct 16th, 2002, 11:59 AM
#3
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 16th, 2002, 12:40 PM
#4
Originally posted by phpman
you should use a one way only.
Unable to decrypt encrypted data seems kinda useless.......
I think what was being asked for was a way to encrypt data so it can be stored..... then when the data is requested, decrypt it and display to the user.
-
Oct 16th, 2002, 12:45 PM
#5
Frenzied Member
so then expalin to me how you decrypt md5()
you can't that is why it is so popular for passwords and such.
but like cornedbeef said "for what?"
-
Oct 20th, 2002, 08:02 AM
#6
Thread Starter
New Member
encryption?
Sir!
I usually need the two way encryption for security reason on my database, because I want to encrypt the data inside my database mostly the user's table. . .
any recommendations? Sir!
Because one thing Im concerned for is the when I use md5() function I the user can't decrypt the his/her record when she or he log-in in the system because his record most epecially his password is encrypted already.
-
Oct 20th, 2002, 10:17 AM
#7
Stuck in the 80s
Re: encryption?
Originally posted by josefiligan
Sir!
I usually need the two way encryption for security reason on my database, because I want to encrypt the data inside my database mostly the user's table. . .
any recommendations? Sir!
Because one thing Im concerned for is the when I use md5() function I the user can't decrypt the his/her record when she or he log-in in the system because his record most epecially his password is encrypted already.
Is the only record that is being encrypted a password field? If so, why would they need to see this information?
-
Oct 20th, 2002, 10:47 AM
#8
Could you please explain in much detail what you are trying to do?
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 21st, 2002, 12:47 AM
#9
PowerPoster
One-way encryption, like MD5 works because the way they compare passwords is to MD5 your input and then compare it to the aleady MD5ed password that is in the database. That is why websites like this don't just give you your password when you lose yours, it has to reset it to something and send you that so you can log in and change it. You will need to find some other way to encrypt data if you want to decrypt it later.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|