SHA256 PL/SQL Implementation for Oracle 10g,11g.
PLSQL
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
LICENSE Create LICENSE Nov 11, 2015
README.md Update README.md Jun 20, 2017
sha256_pkg.sql Update sha256_pkg.sql Jun 20, 2017
sha256_pkgbody.sql removed '&' from comments Feb 18, 2018

README.md

sha256_plsql

SHA256 PL/SQL Implementation for Oracle 10g,11g.

Installation

Compile package in sqlplus

SQL> @sha256_pkg
Package created.
SQL> @sha256_body
Package body created.

Usage

SQL> select sha256.encrypt('test message') from dual;
3f0a377ba0a4a460ecb616f6507ce0d8cfa3e704025d4fda3ed0c5ca05468728

SQL> select sha256.encrypt_raw('74657374206D657373616765') from dual;
3f0a377ba0a4a460ecb616f6507ce0d8cfa3e704025d4fda3ed0c5ca05468728