Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to do MD5SUM in PL/SQL

Status
Not open for further replies.

Raste

Programmer
Jul 21, 2002
7
DK
Does someone know how to create MD5SUMS in PL/SQL? I thought of calling the unix-command, but if PL/SQL has this functionality I would prefer to use that.

/R

 
Hm. I figured it out.

sys.dbms_obfuscation_toolkit.md5(
input_string => V_inputstring,
checksum_string => v_md5sum
);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top