dbms_obfuscation_toolkit.md5 : DBMS_OBFUSCATION_TOOLKIT « System Packages « Oracle PL / SQL






dbms_obfuscation_toolkit.md5

  
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>

   
  








Related examples in the same category

1.DBMS_OBFUSCATION_TOOLKIT.des3getkey
2.DBMS_OBFUSCATION_TOOLKIT.des3encrypt
3.DBMS_OBFUSCATION_TOOLKIT.md5 and RAWTOHEX
4.DBMS_OBFUSCATION_TOOLKIT.des3decrypt
5.Demonstrate DES3 encryption