Oracle database data in transit native encryption
I am trying to enable Native Network Encryption for Database Connections.
On the database side I have added these parameters to the sqlnet.ora file
SQLNET.ENCRYPTION_SERVER=REQUESTED
SQLNET.ENCRYPTION_TYPES_SERVER=(AES256)
and this because in some scenarios the database will be the client to another database
SQLNET.ENCRYPTION_CLIENT=REQUESTED
SQLNET.ENCRYPTION_TYPES_CLIENT=(AES256)
On clients that use OCI I have added this to the sqlnet.ora
SQLNET.ENCRYPTION_CLIENT=REQUESTED
SQLNET.ENCRYPTION_TYPES_CLIENT=(AES256)
For JDBC connections the appropriate parameters are being set
My issue is on the database side how do I verify what sessions have encryption enabled.