Jec
2010-12-15 23:31:22 UTC
USER_TABEL
user_id | password | name
---------------------------------------------
user1 | pwd12 | john doe
user2 | myPas | juan tmad
I want the password column to be hex so that no one can see the user's passwords (i.e. even the database administrator/programmers). For example, I want the table above to be like this when someone open the MS Access .mdb file:
USER_TABEL
user_id | password | name
---------------------------------------------
user1 | ###### | john doe
user2 | ###### | juan tmad
Noticed the password column...