How to store the passwords in database

Questions by varaparasad

Showing Answers 1 - 3 of 3 Answers

meetsanc

  • Oct 2nd, 2008
 

For applications dealing with this highly sensitive data like passwords, Oracle provides the DBMS_OBFUSCATION_TOOLKIT PL/SQL package to encrypt and decrypt data. It includes string inputs and raw inputs. The function is limited to selected algorithms, such as the Data Encryption Standard (DES). The function prohibits making multiple passes of encryption; that is, you cannot nest encryption calls, thereby encrypting an encrypted value. Well, sometimes passwords are not stored encrypted, but rather they are stord HASHED. It can be done by using some hash value. (dbms_utility.get_hash_value)

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions