Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to Decode.. using hash value

misterimranMay 6 2005 — edited May 11 2005

Hi Guys,

I have created a function Enc_Password on my form. following is the code:

FUNCTION Enc_Password ( P_String IN VARCHAR2 ) RETURN VARCHAR2
IS
BEGIN
RETURN DBMS_UTILITY.Get_Hash_Value( P_String, 9, 1001000200 );
END Enc_Password;

Now i call this function on button press event of my form by this code

Dec_Pass := Enc_Password (:login_blk.password);

THE PASSWORD IS ENCRYPTED.........

HOW CAN I DECRYPT IT AGAIN, IS THERE ANY REVERSE.....

S THERE ANY REVERSE USING HAS VALUE

plis help,

Imran Baig

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 8 2005
Added on May 6 2005
5 comments
439 views