| Author |
DBMS_OBFUSCATION_TOOLKIT.DES3 [en/de]cryption
|
peter cooke
Ranch Hand
Joined: Mar 16, 2004
Posts: 310
|
|
Over the years I have had two projects that would enrypt/decrypt values for specific columns in a DBMS table from a Java class. Once on oracle, and once on DB2. So I know it can be done. I have just spent about 40 minutes searching the internet for an example of a java jdbc class that uses DBMS_OBFUSCATION_TOOLKIT.DES3[en/de]crypt. I recall call something about a prepareCall command but that is about it. similar example of what trying to accomplish. given a table called APP_USER that contains login id, password, social security number. insert into APP_USER (u_id, login_id,password, ssn) values (GENERATED_PK,'mylogin', dbms_obfuscation_toolkit.DES3Encrypt (unenrypted_input_string => v_password, key_string => v_key), encrypt ssn); select dbms_obfuscation_toolkit.DES3decrypt(input_string => app_user.password, key_string => key) from app_user where login = ? ) Anyone know of URL references for what I am trying to do
|
CIAO Peter M. Cooke
|
 |
peter cooke
Ranch Hand
Joined: Mar 16, 2004
Posts: 310
|
|
|
I don't know how 2 were submitted. Sorry that this was submitted twice.
|
 |
 |
|
|
subject: DBMS_OBFUSCATION_TOOLKIT.DES3 [en/de]cryption
|
|
|