How to Test Data Encryption Integrity

From Java Example Source Code

Jump to: navigation, search

Contents

[edit] Overview - How to Test Data Encryption Integrity

This Java example program shows how to test data encryption integrity.

[edit] Java Source Code

  • Package: example.jdbc.oraclejdbc
  • File: TestDataEncryptionIntegrity.java
package example.jdbc.oraclejdbc;
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Properties;
 
public class TestDataEncryptionIntegrity {
 
    public static void main(String[] argv) throws Exception {
 
	DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
 
	Properties prop = new Properties();
	prop.setProperty("user", "scott");
	prop.setProperty("password", "tiger");
	prop.setProperty("oracle.net.encryption_client", "REQUIRED");
	prop.setProperty("oracle.net.encryption_types_client", "( RC4_40 )");
	prop.setProperty("oracle.net.crypto_checksum_client", "REQUIRED");
	prop.setProperty("oracle.net.crypto_checksum_types_client", "( MD5 )");
 
	Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@dssw2k01:1521:orcl", prop);
	Statement stmt = conn.createStatement();
	ResultSet rset =
		stmt.executeQuery("select 'Hello Thin driver Encryption & Integrity " + "tester '||USER||'!' result from dual");
	while (rset.next())
	    System.out.println(rset.getString(1));
	rset.close();
	stmt.close();
	conn.close();
    }
}

[edit] What Result You Can Get

Coming soon... Run the program, you will get:

[edit] Required External Libraries and/or Files for this Java Example

In order to run this Java example, one of the following libraries may be required: In order to run this example program, one of the following libraries may be required:


[edit] How to Run this Java Example Program

We recommend running this Java example program with Eclipse.

For assistance in working with Eclipse, please see How to Run Java Program with Eclipse.

It's fairly easy.



[edit] Question & Answer

Any question?

Click edit and post your question or answer here.


Personal tools