PrivMX Endpoint
Client library used by applications and devices which are the ends of PrivMX secure communication channels. It encrypts and decrypts data, manages network connections and provides a functional API, allowing the applications to build their E2EE communication channels based on a few universal, client-side encrypted containers: Threads, Stores, and Inboxes.
PrivMX Endpoint Core is a modular, low-level library written in C++, ready to be configured and used on any device (including IoT, VR + more) and any operating system.
Initialization of the application’s PrivMX Endpoint requires providing an address of the application’s Bridge and the user's private key.
Architecture
Types of architecture included:
- for Linux:
- x86_64
- arm
- arm64
- for MacOS:
- macos64 - x86_64
- macos64 - arm64
- ios64 - arm64
- arm64simulator
- for Windows:
- x86_64
- for Android:
- arm (armeabi-v7a)
- arm64 (arm64-v8a)
- x86 (i386)
- x86_64
How to Start
Install and Configure Conan
To use PrivMX Endpoint you need to add it to your project using Conan Repository Manager. How to install Conan.
Setup Conan with our Repository
Adding to a Project - Sample C++ Program (CMake)
After installing Conan - create a Conan config file in the root dir of your project:
conanfile.txt
Next, add privmx-endpoint library dependency to your CMakeLists.txt:
CMakeLists.txt
main.cpp
Build Project
Run Project
Initial Requirements for Connecting with PrivMX Endpoint to PrivMX Bridge
To use the library's elements in a C++ app, you have to provide:
- PrivMX Endpoint address (platformUrl):
- SolutionId:
You must also ensure that:
-
There is an appropriate context with assigned users on the Bridge Server side.
-
The users have pairs of public and private keys (
Pubkey
andPrivKey
) and the user's private key is known in the app. -
Public keys of all the users are added to the
Context
. -
The app's user knows the public keys of all the other users who are supposed to be added to a module (Thread/Store/Inbox).
Hint:
- Instructions on how to add the user to the Context can be found in the Bridge Installation Guide.
- a pair of keys for that user can be generated, for example, using the code example above or by calling
genKeyPair.sh
script coming with the PrivMX Bridge Server docker.
Example of Using Threads API:
- A single connection with the server is managed by the
connection
- instance ofprivmx::endpoint::core::Connection
. - When connecting via HTTPS - setup begins by specifying a PEM file with the SSL certificate. If there is no certificate file given, a default system certificate will be used.
- Now you need some details to establish connection:
PrivMX Endpoint connection starts by calling Connection factory method: core::Connection::platformConnect(...)
.
- As soon as you get the
connection
object you can create one of the modules APIs - Thread API for example:
After building and running the program above, you will get the output showing messages that were sent to the provided Thread.
A complete project that uses the above code example can be found here.