To encrypt connections between client and database server you have to set some parameters in sqlnet.ora file ($ORACLE_HOME/network/admin/sqlnet.ora) of server and client (you have to install oracle client on the client):

SQLNET.ENCRYPTION_SERVER=REQUIRED
SQLNET.ENCRYPTION_TYPES_SERVER=(AES256)
SQLNET.ENCRYPTION_CLIENT=REQUIRED
SQLNET.ENCRYPTION_TYPES_CLIENT=(AES256)

the ENCRYPTION_CLIENT parameter can have one of these values:

the ENCRYPTION_TYPES_SERVER and ENCRYPTION_TYPES_CLIENT parameters can have these values:

Leave a Reply

Your email address will not be published. Required fields are marked *