From eced7a58415d7f8f7c17ad35f98de222c0f422b6 Mon Sep 17 00:00:00 2001 From: Philipp Salvisberg Date: Wed, 9 Dec 2020 01:12:39 +0100 Subject: [PATCH 1/2] add executable flag (required on macOS and Linux) --- .travis/push_docs_to_github_io.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .travis/push_docs_to_github_io.sh diff --git a/.travis/push_docs_to_github_io.sh b/.travis/push_docs_to_github_io.sh old mode 100644 new mode 100755 From 7812a8a22643e44ce8012cd02721ef715f343ba1 Mon Sep 17 00:00:00 2001 From: Philipp Salvisberg Date: Wed, 9 Dec 2020 01:25:28 +0100 Subject: [PATCH 2/2] resolves #1111 - use dbms_crypto instead of dbms_obfuscation_toolkit --- source/reporters/ut_coverage_report_html_helper.pkb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/reporters/ut_coverage_report_html_helper.pkb b/source/reporters/ut_coverage_report_html_helper.pkb index d673a7f6c..f4b633c1f 100644 --- a/source/reporters/ut_coverage_report_html_helper.pkb +++ b/source/reporters/ut_coverage_report_html_helper.pkb @@ -90,7 +90,7 @@ create or replace package body ut_coverage_report_html_helper is function object_id(a_object_full_name varchar2) return varchar2 is begin - 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)); end; function link_to_source_file(a_object_full_name varchar2) return varchar2 is