Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7812a8a

Browse files
resolves #1111 - use dbms_crypto instead of dbms_obfuscation_toolkit
1 parent eced7a5 commit 7812a8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/reporters/ut_coverage_report_html_helper.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ create or replace package body ut_coverage_report_html_helper is
9090

9191
function object_id(a_object_full_name varchar2) return varchar2 is
9292
begin
93-
return rawtohex(utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5(input_string => a_object_full_name)));
93+
return rawtohex(dbms_crypto.hash(src => utl_raw.cast_to_raw(a_object_full_name), typ => dbms_crypto.hash_md5));
9494
end;
9595

9696
function link_to_source_file(a_object_full_name varchar2) return varchar2 is

0 commit comments

Comments
 (0)