md5 encryption! [message #429881] |
Fri, 06 November 2009 01:35 |
Comii
Messages: 5 Registered: August 2008
|
Junior Member |
|
|
I made a form, and through the form I need to insert password in one column of the table. The value that is going to be inserted need to be hashed!
So I made a function that's return md5 hash.
CREATE OR REPLACE
function md5( input varchar2 ) return sys.dbms_obfuscation_toolkit.varchar2_checksum as
begin
return sys.dbms_obfuscation_toolkit.md5( input_string => input );
end;
How I can call this function in the form and insert hashed value in the table?
Thanks!
|
|
|