forked from CruiserX/sha256_plsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash_util_pkg_demo.sql
14 lines (14 loc) · 1.33 KB
/
hash_util_pkg_demo.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;