Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 5544d67

Browse files
authored
Merge pull request #14465 from TimShererWithAquent/us1679050ef
Change SSL to TLS per 1679050 (1 of 2)
2 parents 1eee98b + f90293d commit 5544d67

9 files changed

Lines changed: 20 additions & 20 deletions

docs/ado/guide/appendixes/internet-explorer-error-codes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ The following table lists Microsoft® Internet Explorer error codes related to R
2323
|**IDS_WinInet_ ConnectionReset**|12031 -2146816257 0x800A2EFF|Internet Client Error: Connection Reset.|
2424
|**IDS_WinInet_Error**|8193 -2146820095 0x800A2001|Internet Client Error.|
2525
|**IDS_WinInet_ InvalidServerResponse**|8430 -2146819858 0x800A20EE|Internet Client Error: Invalid Server Response.|
26-
|**IDS_WinInet_ SSLPostLimitation**|8196 -2146820092 0x800A2004|Internet Client Error: SSL Error (possibly 32K data upload limitation).|
26+
|**IDS_WinInet_ SSLPostLimitation**|8196 -2146820092 0x800A2004|Internet Client Error: TLS/SSL Error (possibly 32K data upload limitation).|
2727
|**IDS_WinInet_Timeout**|8194 -2146820094 0x800A2002|Internet Client Error: Request Timeout.|

docs/connect/jdbc/application-security.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ permission java.net.SocketPermission "*", "listen, connect, accept";
5353
> The code "file:/install_dir/lib/-" refers to the installation directory of the JDBC driver.
5454
5555
## Protecting server communication
56-
When you use the JDBC driver to communicate with a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] database, you can secure the communication channel by using either Internet Protocol Security (IPSEC) or Secure Sockets Layer (SSL); or you can use both.
56+
When you use the JDBC driver to communicate with a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] database, you can secure the communication channel by using either Internet Protocol Security (IPSEC) or Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL); or you can use both.
5757

58-
SSL support can be used to provide an additional level of protection besides IPSEC. For more information about using SSL, see [Using SSL encryption](../../connect/jdbc/using-ssl-encryption.md).
58+
TLS support can be used to provide an additional level of protection besides IPSEC. For more information about using TLS, see [Using encryption](../../connect/jdbc/using-ssl-encryption.md).
5959

6060
## See also
6161
[Securing JDBC driver applications](../../connect/jdbc/securing-jdbc-driver-applications.md)

docs/connect/jdbc/frequently-asked-questions-faq-for-jdbc-driver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ The JDBC Drivers 6.0, 6.2, 6.4, and 7.0 are redistributable. Review the "Distrib
107107
**Can I use the driver to access Microsoft SQL Server from a Linux computer?**
108108
Yes! You can use the driver to access SQL Server from Linux, Unix, and other non-Windows platforms. For more information, see [Microsoft JDBC Driver for SQL Server Support Matrix](../../connect/jdbc/microsoft-jdbc-driver-for-sql-server-support-matrix.md).
109109

110-
**Does the driver support Secure Sockets Layer (SSL) encryption?**
111-
Starting with version 1.2, the driver supports Secure Sockets Layer (SSL) encryption. For more information, see [Using SSL Encryption](../../connect/jdbc/using-ssl-encryption.md).
110+
**Does the driver support TLS encryption?**
111+
Starting with version 1.2, the driver supports Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL), encryption. For more information, see [Using encryption](../../connect/jdbc/using-ssl-encryption.md).
112112

113113
**Which authentication types are supported by the Microsoft JDBC Driver for SQL Server?**
114114
The table below lists available authentication options. A pure Java Kerberos authentication is available starting with the 4.0 release of the driver.

docs/connect/jdbc/jdbc-driver-support-for-high-availability-disaster-recovery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ Please note that:
105105

106106
The **getMultiSubnetFailover**, **setMultiSubnetFailover**, **getApplicationIntent**, **setApplicationIntent**, **getTransparentNetworkIPResolution** and **setTransparentNetworkIPResolution** methods are also added to [SQLServerDataSource Class](../../connect/jdbc/reference/sqlserverdatasource-class.md), [SQLServerConnectionPoolDataSource Class](../../connect/jdbc/reference/sqlserverconnectionpooldatasource-class.md), and [SQLServerXADataSource Class](../../connect/jdbc/reference/sqlserverxadatasource-class.md).
107107

108-
## SSL certificate validation
109-
An availability group consists of multiple physical servers. [!INCLUDE[jdbc_40](../../includes/jdbc_40_md.md)] added support for **Subject Alternate Name** in SSL certificates so multiple hosts can be associated with the same certificate. For more information on SSL, see [Understanding SSL support](../../connect/jdbc/understanding-ssl-support.md).
108+
## TLS/SSL certificate validation
109+
An availability group consists of multiple physical servers. [!INCLUDE[jdbc_40](../../includes/jdbc_40_md.md)] added support for **Subject Alternate Name** in TLS/SSL certificates so multiple hosts can be associated with the same certificate. For more information on TLS, see [Understanding encryption support](../../connect/jdbc/understanding-ssl-support.md).
110110

111111
## See also
112112
[Connecting to SQL Server with the JDBC driver](../../connect/jdbc/connecting-to-sql-server-with-the-jdbc-driver.md)

docs/connect/jdbc/securing-jdbc-driver-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The topics in this section describe some common security concerns including conn
2626
| [Securing Connection Strings](../../connect/jdbc/securing-connection-strings.md) | Describes techniques to help protect information used to connect to a data source. |
2727
| [Validating User Input](../../connect/jdbc/validating-user-input.md) | Describes techniques to validate user input. |
2828
| [Application Security](../../connect/jdbc/application-security.md) | Describes how to use Java policy permissions to help secure a JDBC driver application. |
29-
| [Using SSL Encryption](../../connect/jdbc/using-ssl-encryption.md) | Describes how to establish a secure communication channel with a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] database using Secure Sockets Layer (SSL). |
29+
| [Using encryption](../../connect/jdbc/using-ssl-encryption.md) | Describes how to establish a secure communication channel with a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] database using Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL). |
3030
| [FIPS Mode](../../connect/jdbc/fips-mode.md) | Describes how to use JDBC driver in FIPS compliant mode. |
3131

3232
## See also

0 commit comments

Comments
 (0)