QuarkLink-Client  v1.4.3
Crypto Quantique's QuarkLink-Client library
QuarkLink Client

QuarkLink Client is a C library that implements the core functionalities of QuarkLink, to provide the user with an easy way to enroll to quickly and safely obtain the information needed to connect to their prefered IoT Hub.
This way the user can spend more time designing their application without focusing too much on connecting to the backend services.

Description

QuarkLink Client provides end-users with a library that is ready-to-use on specific platforms, so that all is needed is a few API calls.

The flow of a QuarkLink based application is represented in the flowchart below:

Getting Started

The library is ready to be used and comes as a pre-compiled binary for a variety of platforms, that the developer can use within their project.

Supported Platforms

Currently supported platforms can be found in the quarklink-client-binaries repository.

In order to implement a QuarkLink application the user needs a QuarkLink instance, whose details are needed to initialise the QuarkLink context. A QuarkLink instance comes in the form of a url such as cryptoquantique.quarklink.io and more information on how to obtain one can be found on our website.

Environment Setup

By selecting the appropriate binary, the environment (i.e. what platform and what crypto module to use) is pre-configured.
The user only needs to include quarklink.h to be able to use all the QuarkLink APIs.

Application Setup

The QuarkLink application should follow a similar structure as the one represented in the flowchart above.
To use the quarklink-client library, the user first needs to define a quarklink_context_t variable, that is used to hold all the resources needed for the application.
The structure needs to be initialised by a call to quarklink_init(), after which it will be possible to use all the other APIs, as indicated in the documentation.

Programming

Flashing the program is specific to the board used and the user is trusted to know how to perform this step.

Example

Example code is available at our QuarkLink getting started page.