RE: How to configure MD5 data encription in Oracle 8i

2002-10-16 Thread Jared . Still
ltiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject: RE: How to configure MD5 data encription in Oracle 8i I want to do it other way, generate the password in Database. Send the generated password to user and encrypt and store in table. Next time user will log

RE: How to configure MD5 data encription in Oracle 8i

2002-10-16 Thread Suman S K
RACLE-L Subject: Re: How to configure MD5 data encription in Oracle 8i why not use encryption outside the database and store encrypted string in database . We do it all the time , java application does the encrytion and authentication , db just stores the encrypted s

Re: How to configure MD5 data encription in Oracle 8i

2002-10-16 Thread ora ak
why not use encryption outside the database and store encrypted string in database . We do it all the time , java application does the encrytion and authentication , db just stores the encrypted string . Just an idea . I dont the answer of your original question :) Oramagic  Suman S K <[EMAIL PROTE

Re: How to configure MD5 data encription in Oracle 8i

2002-10-16 Thread Tim Gorman
Procedures and functions to create MD5 hashes (from RAW or VARCHAR2 inputs) are available (undocumented) in the DBMS_OBFUSCATION_TOOLKIT package. Check online doc at "$ORACLE_HOME/rdbms/admin/dbmsobtk.sql" for what little usage info there is... - Original Message - To: "Multiple recipien

How to configure MD5 data encription in Oracle 8i

2002-10-16 Thread Suman S K
Hi Everybody, Can anyone tell me how to use MD5 hashing algorithm in Oracle8I Or is there any built in package to encrypt the data in Oracle 8i. I have created the Application user table there I am keeping user_Id and Password for the application. How to