System Packages Oracle PLSQL

SQL>
SQL>
SQL> set serveroutput on
SQL>     declare
  2          l_md varchar2(16);
  3      begin
  4          l_md := dbms_obfuscation_toolkit.md5(input_string => '911' );
  5          dbms_output.put_line( 'MD5 of 911: ' ||utl_raw.cast_to_raw( l_md ));
  6          --
  7          l_md := dbms_obfuscation_toolkit.md5(input_string => '411' );
  8          dbms_output.put_line( 'MD5 of 411: ' || utl_raw.cast_to_raw( l_md ));
  9    end;
 10   /
MD5 of 911: B56A18E0EACDF51AA2A5306B0F533204
MD5 of 411: 17D63B1625C816C22647A73E1482372B
PL/SQL procedure successfully completed.
SQL>
SQL>