Feeds:
Posts
Comments

Archive for the ‘PL/SQL’ Category

Performing encryption and decryption using the same language might be straight forward and many resources can be found in this regard. But when it comes to across languages, mismatches appear even if you are using the same algorithm to encrypt and decrypt. One of the reasons for this is that each language has its own [...]

Read Full Post »

This may sound dumb and easy. However, I am sharing my experiences with encrypting data because it might be of help to someone.
The Oracle packages that can be used for encryption/decryption varies on the Oracle version.
DBMS_OBFUSCATION_TOOLKIT   – Oracle 8i and above
DBMS_CRYPTO                – Oracle 10.1 and above
I have recently used DBMS_OBFUSCATION_TOOLKIT and will [...]

Read Full Post »