We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7eeae39 + 7812a8a commit abfa190Copy full SHA for abfa190
2 files changed
.travis/push_docs_to_github_io.sh
100644
100755
source/reporters/ut_coverage_report_html_helper.pkb
@@ -90,7 +90,7 @@ create or replace package body ut_coverage_report_html_helper is
90
91
function object_id(a_object_full_name varchar2) return varchar2 is
92
begin
93
- return rawtohex(utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5(input_string => a_object_full_name)));
+ return rawtohex(dbms_crypto.hash(src => utl_raw.cast_to_raw(a_object_full_name), typ => dbms_crypto.hash_md5));
94
end;
95
96
function link_to_source_file(a_object_full_name varchar2) return varchar2 is
0 commit comments