Configuring Client Libraries
Connect your applications to Cryptlex On-Premise.
LexActivator
int status;
status = SetProductData("PASTE_CONTENT_OF_PRODUCT.DAT_FILE");
if (LA_OK != status)
{
// handle error
}
status = SetProductId("PASTE_PRODUCT_ID", LA_USER);
if (LA_OK != status)
{
// handle error
}
status = SetCryptlexHost("https://cryptlex-api.mycompany.com");
if (LA_OK != status)
{
// handle error
}LexFloatServer
Last updated