15 lines
1.3 KiB
SQL
15 lines
1.3 KiB
SQL
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;
|