私のオープンソースのOraclePL/SQLプログラム
インストールの詳細については、プロジェクトページを参照してください。手順は基本的にダウンロードして、loadjava
を実行します。 、次にSQLスクリプトを実行します。
以下は、キーの生成、暗号化、および復号化の完全な例です。
--Generate keys. Store the private and public key for later.
SELECT CRYPTO.RSA_GENERATE_KEYS(KEY_SIZE => 1024)
FROM DUAL;
--Encrypt and store encrypted text.
SELECT CRYPTO.RSA_ENCRYPT(PLAIN_TEXT => 'This is my secret message.',
PUBLIC_KEY => '<use public key from above>')
FROM DUAL;
--Decrypt, using the encrypted text and the private key, and it returns the plain text.
SELECT CRYPTO.RSA_DECRYPT(ENCRYPTED_TEXT => '<use output from above>',
PRIVATE_KEY => '<use private key from first step>')
FROM DUAL;