UltraLite User's Guide
UltraLite Reference
Synchronization parameters
Set the UltraLite client to use Certicom encryption technology when exchanging messages with the MobiLink synchronization server.
Separately-licensable option requiredUse of Certicom technology requires that you obtain the separately-licensable SQL Anywhere Studio security option and is subject to export regulations. For more information on this option, see Welcome to SQL Anywhere Studio. |
The security parameter is null by default, corresponding to no transport-layer security.
The following security streams are supported:
ULSecureCerticomTLSStream() Elliptic-curve transport-layer security provided by Certicom.
ULSecureRSATLSStream() RSA transport-layer security provided by Certicom.
For C/C++ applications, the security stream is specified in addition to the synchronization stream. For example, in embedded SQL:
ul_synch_info info; ... info.stream = ULSocketStream(); info.security = ULRSATLSStream();
To use secure synchronization from UltraLite Java applications, choose a separate stream. For more information, see Initializing the synchronization options.