This is an old revision of the document!


SSL API

As API that configures the SSL communication, there are communication interfaces include LAN, USB, and RS485. To get real-time device connectivity and search results, please register the callback function via the BS2_SetDeviceEventListener function.

typedef void (*GetRootCaFilePath)(uint32_t deviceId);
typedef const char* (*GetServerCaFilePath)(BS2_DEVICE_ID deviceId);
typedef const char* (*GetServerPrivateKeyFilePath)(uint32_t deviceId);
typedef const char* (*GetPassword)(uint32_t deviceId);
typedef const char* (*OnErrorOccured)(BS2_DEVICE_ID deviceId, int errCode);

1. GetRootCaFilePath
Callback function that is called when to retrieve the root CA file directory.

2. GetServerCaFilePath
Callback function that is called when to retrieve the server CA file directory.

3. GetServerPrivateKeyFilePath
Callback function that is called when to retrieve the server private key file directory.

4. GetPassword
Callback function that is called when to retrieve the password.

5. OnErrorOccured
Callback function that is called when an error has occurred.