Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 3c81c2ef4f93f62199f9086acbf02ded > files > 7

ezcomponents-Database-1.4.7-3.mga4.noarch.rpm

create or replace function md5(
vin_string IN varchar2
) return varchar2 IS
--
-- Return an MD5 hash of the input string.
--
BEGIN
return lower(dbms_obfuscation_toolkit.md5 (
input => utl_raw.cast_to_raw(vin_string)
));
END;
/
exit;