@@ -2665,10 +2665,34 @@ particular, review the available algorithms for security and performance.
2665
2665
The ``NETWORK_SERVICE_BANNER`` column of the database view
2666
2666
`V$SESSION_CONNECT_INFO <https://www.oracle.com/pls/topic/lookup?ctx=
2667
2667
dblatest&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
2669
2693
2670
2694
For 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
2672
2696
the `Oracle Database Security Guide <https://www.oracle.com/pls/topic/
2673
2697
lookup?ctx=dblatest&id=DBSEG>`__. This manual also contains information about
2674
2698
other important security features that Oracle Database provides, such
0 commit comments