Download Data Encryption Driver



-->

Security Encryption free download - Trend Micro Maximum Security, Microsoft Security Essentials, Avira Free Security with Antivirus, and many more programs. Flexible encryption for high-level security is based on users, groups and data sensitivity. It supports running the following Windows operating systems: Win7, 8, 8.1 and 10 both 32 and 64bit on the following products: Tablet, Precisions, OptiPlex and Latitude. Ensure that security device drivers. The Eclypt ® Freedom is an external USB hardware-encrypted hard drive that can store, archive, or back up data at rest and easily transport it to different computers. Used by governments, military forces, and law enforcement organizations worldwide, this secure portable hard drive integrates sophisticated authentication, entire-disk encryption, and data storage into tamper-resistant portable.

When connecting to SQL Server, if the application requests encryption and the instance of SQL Server is configured to support TLS encryption, the Microsoft JDBC Driver for SQL Server initiates the TLS handshake. The handshake allows the server and client to negotiate the encryption and cryptographic algorithms to be used to protect data. After the TLS handshake is complete, the client and server can send the encrypted data securely. During the TLS handshake, the server sends its public key certificate to the client. The issuer of a public key certificate is known as a Certificate Authority (CA). The client is responsible for validating that the certificate authority is one that the client trusts.

If the application does not request encryption, the Microsoft JDBC Driver for SQL Server will not force SQL Server to support TLS encryption. If the SQL Server instance is not configured to force the TLS encryption, a connection is established without encryption. If the SQL Server instance is configured to force the TLS encryption, the driver will automatically enable TLS encryption when running on properly configured Java Virtual Machine (JVM), or else the connection is terminated and the driver will raise an error.

Windows

Note

Make sure the value passed to serverName exactly matches the Common Name (CN) or DNS name in the Subject Alternate Name (SAN) in the server certificate for a TLS connection to succeed.

For more information about how to configure TLS for SQL Server, see Enable Encrypted Connections to the Database Engine.

Remarks

In order to allow applications to use TLS encryption, the Microsoft JDBC Driver for SQL Server has introduced the following connection properties starting with the version 1.2 release: encrypt, trustServerCertificate, trustStore, trustStorePassword, and hostNameInCertificate. For more information, see Setting the Connection Properties.

Data Encryption Software

The following table summarizes how the Microsoft JDBC Driver for SQL Server version behaves for possible TLS connection scenarios. Each scenario uses a different set of TLS connection properties. The table includes:

  • blank: 'The property does not exist in the connection string'

  • value: 'The property exists in the connection string and its value is valid'

  • any: 'It does not matter whether the property exists in the connection string or its value is valid'

Note

The same behavior applies for SQL Server user authentication and Windows integrated authentication.

encrypttrustServerCertificatehostNameInCertificatetrustStoretrustStorePasswordBehavior
false or blankanyanyanyanyThe Microsoft JDBC Driver for SQL Server will not force SQL Server to support TLS encryption. If the server has a self-signed certificate, the driver initiates the TLS certificate exchange. The TLS certificate will not be validated and only the credentials (in the login packet) are encrypted.
If the server requires the client to support TLS encryption, the driver will initiate the TLS certificate exchange. The TLS certificate will not be validated, but the entire communication will be encrypted.
truetrueanyanyanyThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange. If the trustServerCertificate property is set to 'true', the driver will not validate the TLS certificate.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankblankblankblankThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the serverName property specified on the connection URL to validate the server TLS certificate and rely on the trust manager factory's look-up rules to determine which certificate store to use.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankvalueblankblankThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will validate the TLS certificate's subject value by using the value specified for the hostNameInCertificate property.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankblankvaluevalueThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the trustStore property value to find the certificate trustStore file and trustStorePassword property value to check the integrity of the trustStore file.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankblankblankvalueThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the trustStorePassword property value to check the integrity of the default trustStore file.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankblankvalueblankThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the trustStore property value to look up the location of the trustStore file.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankvalueblankvalueThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the trustStorePassword property value to check the integrity of the default trustStore file. In addition, the driver will use the hostNameInCertificate property value to validate the TLS certificate.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankvaluevalueblankThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the trustStore property value to look up the location of the trustStore file. In addition, the driver will use the hostNameInCertificate property value to validate the TLS certificate.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.
truefalse or blankvaluevaluevalueThe Microsoft JDBC Driver for SQL Server requests to use TLS encryption with the SQL Server.
If the server requires the client to support TLS encryption or if the server supports encryption, the driver will initiate the TLS certificate exchange.
The driver will use the trustStore property value to find the certificate trustStore file and trustStorePassword property value to check the integrity of the trustStore file. In addition, the driver will use the hostNameInCertificate property value to validate the TLS certificate.
If the server is not configured to support encryption, the driver will raise an error and terminate the connection.

If the encrypt property is set to true, the Microsoft JDBC Driver for SQL Server uses the JVM's default JSSE security provider to negotiate TLS encryption with SQL Server. The default security provider may not support all of the features required to negotiate TLS encryption successfully. For example, the default security provider may not support the size of the RSA public key used in the SQL Server TLS certificate. In this case, the default security provider might raise an error that will cause the JDBC driver to terminate the connection. In order to resolve this issue, one of the following options can be used:

  • Configure the SQL Server with a server certificate that has a smaller RSA public key

  • Configure the JVM to use a different JSSE security provider in the '<java-home>/lib/security/java.security' security properties file

  • Use a different JVM

Download Data Encryption Driver Win 7

Validating server TLS certificate

During the TLS handshake, the server sends its public key certificate to the client. The JDBC driver or client has to validate that the server certificate is issued by a certificate authority that the client trusts. The driver requires that the server certificate must meet the following conditions:

Data Encryption Methods

  • The certificate was issued by a trusted certificate authority.

  • The certificate must be issued for server authentication.

  • The certificate is not expired.

  • The Common Name (CN) in the Subject or a DNS name in the Subject Alternate Name (SAN) of the certificate exactly matches the serverName value specified in the connection string or, if specified, the hostNameInCertificate property value.

  • A DNS name can include wild-card characters. Prior version 7.2, the Microsoft JDBC Driver for SQL Server does not support wild-card matching. That is, abc.com will not match *.com but *.com will match *.com. With version 7.2 and up, standard certificate wild-card matching is supported.

Iomega Encryption Driver

See also