GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  Database security

 Print  |  
Question:  How to store the passwords in database



October 10, 2008 07:27:28 #1
 meetsanc   Member Since: October 2008    Total Comments: 1 

RE: How to store the passwords in database
 
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)
     

 

Back To Question