Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 » SQL Anywhere Server - Database Administration » User and database security » Transport-layer security » SQL Anywhere client/server communication encryption » Client application configuration 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(
 [ fips={ y | n }; ]
   trusted_certificates=public-certificate
 [ certificate_company=organization; ]
 [ certificate_name=common-name; ]
 [ certificate_unit=organization-unit ] )
  • public-certificate   is the path and file name of a file that contains one or more trusted certificates. If you are using FIPS-certified RSA encryption, you must generate your certificates using RSA.

  • organization   forces the client to accept server certificates only when the Organization field on the certificate matches this value.

  • common-name   forces the client to accept server certificates only when the Common Name field on the certificate matches this value.

  • organization-unit   forces the client to accept server certificates only when the Organization Unit field on the certificate matches this value.

 See also
 Example