Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Encrypting data before storing in columns

Re: Encrypting data before storing in columns

From: arvind <arvind_at_mciworld.com>
Date: 2000/03/30
Message-ID: <WAxE4.779$cV3.20829@pm01news.wcom.com>#1/1

Hi

Use one way encryption as oracle does.
When the user enters passwd for the first time get its has value using dbms_utility.get_has_value and store it in the DB(number column). Whenever the user enter a password to logon use the dbms_utility.get... functio to get the hash value of the password entered and compare it with the one in the database. It is a lot safer the users querying the DB will always see a number and will have no clue of the password.

HTH
Arvind Balaraman
logo_palanisamy_at_my-deja.com wrote in message <8bu50h$4m7$1_at_nnrp1.deja.com>...
>Does Oracle have a way to encrypt data before storing it in varchar2
>table columns? Is there any better way than using a combination of
>replace, translate functions?
>
>What we want is to encrypt the application user password and store it
>in a not easy to decipher form.
>
>Thanks in advance.
>Logo Palanisamy
>
>
>Sent via Deja.com http://www.deja.com/
>Before you buy.
Received on Thu Mar 30 2000 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US