ORDS/WebLogic ASO native encyption to database
We only have ASO native sql encryption configured in our databases where you setup encryption in sqlnet.ora files both server and clients.
With our new APEX install using WebLogic/ORDS, how do we implement native encryption?
I believe ORDS uses thin jdbc so according to jdbc security doc for thin jdbc, https://docs.oracle.com/cd/E18283_01/java.112/e16548/clntsec.htm#EHACDDCI
We need to modify/create a java properties file with the following:
Properties prop = new Properties();
prop.setProperty(OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_LEVEL, "REQUIRED");
prop.setProperty(OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_TYPES, "( DES40C )");