Hi all,
In Oracle there are Data Encryption and Data Integrity where,
using JDBC Drivers, I can do this for example:
Code:
Properties up=new properties();
// Data Encryption: Level security with the server
up.put("oracle.net.encryption_client", "REQUIRED");
// Data Encryption: Encryption algorithm / RC4 - 256 bits
up.put("oracle.net.encryption_types_client", "RC4_256");
// Data Integrity: Level security with the server
up.put("oracle.net.crypto_checksum_client", "REQUIRED");
// Data Integrity: Data integrity algorithm
up.put("oracle.net.crypto_checksum_types_client","MD5");
In Hibernate, Can I do set Data Encryption and Data Integrity?
How is it in Hibernate?
Hibernate version: 2.1.4
Name and version of the database you are using: Oracle 9i and 8i
Thanks!
[]´s