How to Decode.. using hash value
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