Skip to content

Commit

Permalink
Merge pull request mortenbra#42 from vadimonus/master
Browse files Browse the repository at this point in the history
Package name in hash_util_pkg_demo fix
  • Loading branch information
mortenbra authored Apr 20, 2017
2 parents bcb8a7f + 53e681d commit 8d86031
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions extras/hash_util_pkg_demo.sql
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 8d86031

Please sign in to comment.