PDA

View Full Version : insert encrypted data into tables


MaleMan
06-06-02, 00:49
guys, can u give me some tips and info about howto insert encrypted data into table?

just like:

-------------------------------------------------------------------

name = johnny
password = 'password' encrypted-->(md578f3815)
fullname = juan dela cruz

=====================================

or r ther any function for this one?

thanx... in advance
:cool:

MaleMan
09-23-02, 02:40
:)

(for someone who dont know yet...)

maybe just use some functions (like md5 or crypt functions in PHP) before you store the values in the database....

cheers!!!

eperich
09-23-02, 05:53
Make your own crypt decrypt class.

if you have only text then vonvert the chart to their postion in the alphabet and then crypt.

Or with alphanumeric

generate some chars-> save them in a field in the database.
coded and insert at each second position a random char and the crypt it

If it is important to crypt the passwords.
make more steps then one before crypting and decrypting it

I use always a unique identifier of the sequence to out it in the crypted things

Think about it :D