Collection Contents Index Client security options Next PDF

SQL Anywhere® Server - Database Administration  > Transport-Layer Security  > Encrypting SQL Anywhere client/server communications  > Configuring client applications to use transport-layer security

Establishing a client connection using transport-layer security


To set up client applications to use transport-layer security, use the Encryption [ENC] connection parameter in your connection string. The connection string takes the following form (which must be written all on one line):

Encryption=tls(
tls_type=
cipher;
[ fips={ y | n }; ]
trusted_certificates=public-certificate)

For more information about trusted_certificates and other client security parameters, see Client security options.

For more information about creating or obtaining the certificate, see Creating digital certificates.

For more information about the encryption connection parameter, see Encryption connection parameter [ENC].

Example

The following example uses the trusted_certificates encryption connection parameter to specify the certificate, public_cert.crt.

"UID=DBA;PWD=sql;ENG=myeng;LINKS=tcpip;
ENC=tls(tls_type=ecc;trusted_certificates=public_cert.crt)"

The following example uses the trusted_certificates encryption connection parameter to specify the certificate, public_cert.crt, and verifies certificate fields using the certificate_unit and certificate_name encryption connection parameters.

"UID=DBA;PWD=sql;ENG=myeng;LINKS=tcpip;
ENC=tls(tls_type=ecc;trusted_certificates=public_cert.crt;
certificate_unit=test_unit;certificate_name=my_certificate)"

Collection Contents Index Client security options Next PDF