@@ -2665,10 +2665,34 @@ particular, review the available algorithms for security and performance.
26652665The ``NETWORK_SERVICE_BANNER`` column of the database view
26662666`V$SESSION_CONNECT_INFO <https://www.oracle.com/pls/topic/lookup?ctx=
26672667dblatest&id=GUID-9F0DCAEA-A67E-4183-89E7-B1555DC591CE>`__
2668- can be used to verify the encryption status of a connection.
2668+ can be used to verify the encryption status of a connection. For example with
2669+ SQL*Plus::
2670+
2671+ SQL> SELECT network_service_banner FROM v$session_connect_info;
2672+
2673+ If the connection is encrypted, then this query prints an output that includes
2674+ the available encryption service, the crypto-checksumming service, and the
2675+ algorithms in use, such as::
2676+
2677+ NETWORK_SERVICE_BANNER
2678+ -------------------------------------------------------------------------------------
2679+ TCP/IP NT Protocol Adapter for Linux: Version 19.0.0.0.0 - Production
2680+ Encryption service for Linux: Version 19.0.1.0.0 - Production
2681+ AES256 Encryption service adapter for Linux: Version 19.0.1.0.0 - Production
2682+ Crypto-checksumming service for Linux: Version 19.0.1.0.0 - Production
2683+ SHA256 Crypto-checksumming service adapter for Linux: Version 19.0.1.0.0 - Production
2684+
2685+ If the connection is unencrypted, then the query will only print the
2686+ available encryption and crypto-checksumming service messages. For example::
2687+
2688+ NETWORK_SERVICE_BANNER
2689+ -------------------------------------------------------------------------------------
2690+ TCP/IP NT Protocol Adapter for Linux: Version 19.0.0.0.0 - Production
2691+ Encryption service for Linux: Version 19.0.1.0.0 - Production
2692+ Crypto-checksumming service for Linux: Version 19.0.1.0.0 - Production
26692693
26702694For more information about Oracle Data Network Encryption and Integrity,
2671- and for information about configuring SSL network encryption, refer to
2695+ and for information about configuring TLS network encryption, refer to
26722696the `Oracle Database Security Guide <https://www.oracle.com/pls/topic/
26732697lookup?ctx=dblatest&id=DBSEG>`__. This manual also contains information about
26742698other important security features that Oracle Database provides, such
0 commit comments