MD5 function in Oracle
Recently I was struggling to find a function to get MD5 to work in Oracle, like the MD5() function in MySQL. After some searching I found out that there is no direct way to calculate an MD5 checksum in Oracle. Therefore I created the function below. CREATE OR REPLACE FUNCTION USERINFO.md5hash (str IN VARCHAR2) RETURN [...]

