md5 encryption!
KodNov 5 2009 — edited Nov 21 2009I 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!