Skip to content

Commit 53e681d

Browse files
committed
Hash_util_pkg_demo fix
1 parent fc0efe2 commit 53e681d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

extras/hash_util_pkg_demo.sql

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
select rawtohex(hash_pkg.sha1(utl_raw.cast_to_raw(''))) from dual;
2-
select rawtohex(hash_pkg.sha1(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
3-
select rawtohex(hash_pkg.sha224(utl_raw.cast_to_raw(''))) from dual;
4-
select rawtohex(hash_pkg.sha224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
5-
select rawtohex(hash_pkg.sha256(utl_raw.cast_to_raw(''))) from dual;
6-
select rawtohex(hash_pkg.sha256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
7-
select rawtohex(hash_pkg.sha384(utl_raw.cast_to_raw(''))) from dual;
8-
select rawtohex(hash_pkg.sha384(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
9-
select rawtohex(hash_pkg.sha512(utl_raw.cast_to_raw(''))) from dual;
10-
select rawtohex(hash_pkg.sha512(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
11-
select rawtohex(hash_pkg.sha512_224(utl_raw.cast_to_raw(''))) from dual;
12-
select rawtohex(hash_pkg.sha512_224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
13-
select rawtohex(hash_pkg.sha512_256(utl_raw.cast_to_raw(''))) from dual;
14-
select rawtohex(hash_pkg.sha512_256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
1+
select rawtohex(hash_util_pkg.sha1(utl_raw.cast_to_raw(''))) from dual;
2+
select rawtohex(hash_util_pkg.sha1(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
3+
select rawtohex(hash_util_pkg.sha224(utl_raw.cast_to_raw(''))) from dual;
4+
select rawtohex(hash_util_pkg.sha224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
5+
select rawtohex(hash_util_pkg.sha256(utl_raw.cast_to_raw(''))) from dual;
6+
select rawtohex(hash_util_pkg.sha256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
7+
select rawtohex(hash_util_pkg.sha384(utl_raw.cast_to_raw(''))) from dual;
8+
select rawtohex(hash_util_pkg.sha384(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
9+
select rawtohex(hash_util_pkg.sha512(utl_raw.cast_to_raw(''))) from dual;
10+
select rawtohex(hash_util_pkg.sha512(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
11+
select rawtohex(hash_util_pkg.sha512_224(utl_raw.cast_to_raw(''))) from dual;
12+
select rawtohex(hash_util_pkg.sha512_224(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;
13+
select rawtohex(hash_util_pkg.sha512_256(utl_raw.cast_to_raw(''))) from dual;
14+
select rawtohex(hash_util_pkg.sha512_256(utl_raw.cast_to_raw('The quick brown fox jumps over the lazy dog'))) from dual;

0 commit comments

Comments
 (0)