I once figured out how to get SSL to work with Oracle. If that's what you mean with TCPS, then here's some useful snippets from old emails:
Google on:
SQLNET.ENCRYPTION_TYPES_SERVER
the simplest way for communication encryption for Oracle to work:
All I had to do was add these two lines to the sqlnet.ora on the server.
SQLNET.ENCRYPTION_TYPES_SERVER=(AES256,3DES168)
SQLNET.ENCRYPTION_SERVER = required
- Not sure yet if AES256 is better or not than the 3key Des168 encryption. There is contradictory information on this. (Having both the server will see what's available / best on the client's OS and make a choice AES256 seems to use TLS v1.2 as seen using WireShark).
- Not sure about which one is faster.
We made the initial mistake of first trying to run it our server which had Oracle 11g v. 11.2.0, so that didn't work.
The MINIMUM required version of Oracle is 11g v. 11.2.4