Merge pull request #42 from vadimonus/master

Package name in hash_util_pkg_demo fix
This commit is contained in:
mortenbra 2017-04-20 18:37:34 +02:00 committed by GitHub
commit 8d86031e8a

View File

@ -1,14 +1,14 @@
select rawtohex(hash_pkg.sha1(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha1(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_pkg.sha224(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_pkg.sha256(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_pkg.sha384(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha384(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_pkg.sha512(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha512(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_pkg.sha512_224(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha512_224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_pkg.sha512_256(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_pkg.sha512_256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha1(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha1(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha224(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha256(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha384(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha384(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha512(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha512(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha512_224(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha512_224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
select rawtohex(hash_util_pkg.sha512_256(utl_raw.cast_to_raw(''))) from dual;
select rawtohex(hash_util_pkg.sha512_256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;