Skip to Main Content

APEX

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!

md5 encryption!

KodNov 5 2009 — edited Nov 21 2009
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!
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 19 2009
Added on Nov 5 2009
13 comments
21,898 views