lime
Lime is a C++ library implementing Open Whisper System Signal protocol
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
org.linphone.lime.LimeManager Class Reference

A java wrapper around the native Lime Manager interface. More...

Public Member Functions

 LimeManager (String db_access, LimePostToX3DH postObj)
 Lime Manager constructor. More...
 
native void nativeDestructor ()
 Native ressource destructor We cannot rely on finalize (deprecated since java9), it must explicitely be called before the object is destroyed by the java environment. More...
 
void create_user (String localDeviceId, String serverURL, LimeCurveId curveId, int OPkInitialBatchSize, LimeStatusCallback statusObj) throws LimeException
 Create a user in local database and publish it on the given X3DH server. More...
 
void create_user (String localDeviceId, String serverURL, LimeCurveId curveId, LimeStatusCallback statusObj) throws LimeException
 
native void delete_user (String localDeviceId, LimeStatusCallback statusObj) throws LimeException
 Delete a user from local database and from the X3DH server. More...
 
native boolean is_user (String localDeviceId) throws LimeException
 Check if a user is present and active in local storage. More...
 
void encrypt (String localDeviceId, String recipientUserId, RecipientData[] recipients, byte[] plainMessage, LimeOutputBuffer cipherMessage, LimeStatusCallback statusObj, LimeEncryptionPolicy encryptionPolicy)
 Encrypt a buffer (text or file) for a given list of recipient devices. More...
 
void encrypt (String localDeviceId, String recipientUserId, RecipientData[] recipients, byte[] plainMessage, LimeOutputBuffer cipherMessage, LimeStatusCallback statusObj)
 
LimePeerDeviceStatus decrypt (String localDeviceId, String recipientUserId, String senderDeviceId, byte[] DRmessage, byte[] cipherMessage, LimeOutputBuffer plainMessage)
 Decrypt the given message. More...
 
LimePeerDeviceStatus decrypt (String localDeviceId, String recipientUserId, String senderDeviceId, byte[] DRmessage, LimeOutputBuffer plainMessage)
 
void update (LimeStatusCallback statusObj, int OPkServerLowLimit, int OPkBatchSize)
 Update: shall be called once a day at least, performs checks, updates and cleaning operations. More...
 
void update (LimeStatusCallback statusObj)
 
native void get_selfIdentityKey (String localDeviceId, LimeOutputBuffer Ik) throws LimeException
 retrieve self Identity Key, an EdDSA formatted public key More...
 
void set_peerDeviceStatus (String peerDeviceId, byte[] Ik, LimePeerDeviceStatus status) throws LimeException
 set the peer device status flag in local storage: unsafe, trusted or untrusted. More...
 
void set_peerDeviceStatus (String peerDeviceId, LimePeerDeviceStatus status)
 set the peer device status flag in local storage: unsafe or untrusted. More...
 
LimePeerDeviceStatus get_peerDeviceStatus (String peerDeviceId)
 get the status of a peer device: unknown, untrusted, trusted, unsafe More...
 
native void delete_peerDevice (String peerDeviceId)
 delete a peerDevice from local storage More...
 
native void set_x3dhServerUrl (String localDeviceId, String serverURL) throws LimeException
 Set the X3DH key server URL for this identified user if specified localDeviceId is not found in local Storage, throw an exception. More...
 
native void stale_sessions (String localDeviceId, String peerDeviceId) throws LimeException
 Stale all sessions between localDeviceId and peerDevice. If peerDevice keep using this session to encrypt and we decrypt with success, the session will be reactivated but to encrypt a message to this peerDevice, a new session will be created. If no session is active between the given device, this call has no effect. More...
 
native String get_x3dhServerUrl (String localDeviceId) throws LimeException
 Get the X3DH key server URL for this identified user if specified localDeviceId is not found in local Storage, throw an exception. More...
 

Static Public Member Functions

static native void process_X3DHresponse (long ptr, int responseCode, byte[] response)
 native function to process the X3DH server response More...
 

Protected Member Functions

native void initialize (String db_access, LimePostToX3DH postObj)
 

Detailed Description

A java wrapper around the native Lime Manager interface.

To use this wrapper you must implement the interfaces

Constructor & Destructor Documentation

◆ LimeManager()

org.linphone.lime.LimeManager.LimeManager ( String  db_access,
LimePostToX3DH  postObj 
)
inline

Lime Manager constructor.

Parameters
[in]db_accessstring used to access DB: can be filename for sqlite3 or access params for mysql, directly forwarded to SOCI session opening
[in]postObjAn object used to send data to the X3DH server

Member Function Documentation

◆ create_user() [1/2]

void org.linphone.lime.LimeManager.create_user ( String  localDeviceId,
String  serverURL,
LimeCurveId  curveId,
int  OPkInitialBatchSize,
LimeStatusCallback  statusObj 
) throws LimeException
inline

Create a user in local database and publish it on the given X3DH server.

The Lime user shall be created at the same time the account is created on the device, this function shall not be called again, attempt to re-create an already existing user will fail. A user is identified by its deviceId (shall be the GRUU) and must at creation select a base Elliptic curve to use, this setting cannot be changed later A user is published on an X3DH key server who must run using the same elliptic curve selected for this user (creation will fail otherwise), the server url cannot be changed later

Parameters
[in]localDeviceIdIdentify the local user acount to use, it must be unique and is also be used as Id on the X3DH key server, it shall be the GRUU
[in]serverURLThe complete url(including port) of the X3DH key server. It must connect using HTTPS. Example: https://sip5.linphone.org:25519
[in]curveIdChoice of elliptic curve to use as base for ECDH and EdDSA operation involved. Can be CurveId::c25519 or CurveId::c448.
[in]OPkInitialBatchSizeNumber of OPks in the first batch uploaded to X3DH server
[in]statusObjThis operation contact the X3DH server and is thus asynchronous, when server responds, the statusObj.callback will be called giving the exit status and an error message in case of failure
Note
The OPkInitialBatchSize is optionnal, if not used, set to defaults 100

◆ create_user() [2/2]

void org.linphone.lime.LimeManager.create_user ( String  localDeviceId,
String  serverURL,
LimeCurveId  curveId,
LimeStatusCallback  statusObj 
) throws LimeException
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

◆ decrypt() [1/2]

LimePeerDeviceStatus org.linphone.lime.LimeManager.decrypt ( String  localDeviceId,
String  recipientUserId,
String  senderDeviceId,
byte []  DRmessage,
byte []  cipherMessage,
LimeOutputBuffer  plainMessage 
)
inline

Decrypt the given message.

if specified localDeviceId is not found in local Storage, throw an exception

Parameters
[in]localDeviceIdused to identify which local acount to use and also as the recipient device ID of the message, shall be the GRUU
[in]recipientUserIdthe Id of intended recipient, shall be a sip:uri of user or conference, is used as associated data to ensure no-one can mess with intended recipient it is not necessarily the sip:uri base of the GRUU as this could be a message from alice first device intended to bob being decrypted on alice second device
[in]senderDeviceIdIdentify sender Device. This field shall be extracted from signaling data in transport protocol, is used to rebuild the authenticated data associated to the encrypted message
[in]DRmessageDouble Ratchet message targeted to current device
[in]cipherMessagewhen present (depends on encryption policy) holds a common part of the encrypted message. Can be ignored or set to empty vector if not present in the incoming message.
[out]plainMessagethe output buffer
Returns
LimePeerDeviceStatus.FAIL if we cannot decrypt the message, LimePeerDeviceStatus.UNKNOWN when it is the first message we ever receive from the sender device, LimePeerDeviceStatus.UNTRUSTED for known but untrusted sender device, or LimePeerDeviceStatus.TRUSTED if it is

◆ decrypt() [2/2]

org.linphone.lime.LimeManager.decrypt ( String  localDeviceId,
String  recipientUserId,
String  senderDeviceId,
byte []  DRmessage,
LimeOutputBuffer  plainMessage 
)
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

convenience form to be called when no cipher message is received

◆ delete_peerDevice()

native void org.linphone.lime.LimeManager.delete_peerDevice ( String  peerDeviceId)

delete a peerDevice from local storage

Parameters
[in]peerDeviceIdThe device Id to be removed from local storage, shall be its GRUU

Call is silently ignored if the device is not found in local storage

◆ delete_user()

native void org.linphone.lime.LimeManager.delete_user ( String  localDeviceId,
LimeStatusCallback  statusObj 
) throws LimeException

Delete a user from local database and from the X3DH server.

if specified localDeviceId is not found in local Storage, throw an exception

Parameters
[in]localDeviceIdIdentify the local user acount to use, it must be unique and is also be used as Id on the X3DH key server, it shall be the GRUU
[in]statusObjThis operation contact the X3DH server and is thus asynchronous, when server responds, the statusObj.callback will be called giving the exit status and an error message in case of failure

◆ encrypt() [1/2]

void org.linphone.lime.LimeManager.encrypt ( String  localDeviceId,
String  recipientUserId,
RecipientData []  recipients,
byte []  plainMessage,
LimeOutputBuffer  cipherMessage,
LimeStatusCallback  statusObj,
LimeEncryptionPolicy  encryptionPolicy 
)
inline

Encrypt a buffer (text or file) for a given list of recipient devices.

if specified localDeviceId is not found in local Storage, throw an exception

Clarification on recipients:

recipients information needed are a list of the device Id and one userId. The device Id shall be their GRUU while the userId is a sip:uri.

recipient User Id is used to identify the actual intended recipient. Example: alice have two devices and is signed up on a conference having
bob and claire as other members. The recipientUserId will be the conference sip:uri and device list will include:
     - alice other device
     - bob devices
     - claire devices
If Alice write to Bob only, the recipientUserId will be bob sip:uri and recipient devices list :
     - alice other device
     - bob devices

In all cases, the identified source of the message will be the localDeviceId

If the X3DH server can't provide keys for a peer device, its status is set to fail and its DRmessage is empty. Other devices get their encrypted message
If no peer device could get encrypted for all of them are missing keys on the X3DH server, the callback will be called with fail exit status
Note
nearly all parameters are shared pointers as the process being asynchronous, the ownership will be taken internally exempting caller to manage the buffers.
Parameters
[in]localDeviceIdused to identify which local acount to use and also as the identified source of the message, shall be the GRUU
[in]recipientUserIdthe Id of intended recipient, shall be a sip:uri of user or conference, is used as associated data to ensure no-one can mess with intended recipient
[in,out]recipientsa list of RecipientData holding:
  • the recipient device Id(GRUU)
  • an empty buffer to store the DRmessage which must then be routed to that recipient
  • the peer Status. If peerStatus is set to fail, this entry is ignored otherwise the peerStatus is set by the encrypt, see LimePeerDeviceStatus definition for details
[in]plainMessagea buffer holding the message to encrypt, can be text or data.
[out]cipherMessagepoints to the buffer to store the encrypted message which must be routed to all recipients(if one is produced, depends on encryption policy)
[in]statusObjPerforming encryption may involve the X3DH server and is thus asynchronous, when the operation is completed, this statusObj.callback will be called giving the exit status and an error message in case of failure. It is advised to store a reference to cipherMessage and recipients in this object so they can access the output of encryption as it won't be part of the callback parameters.
[in]encryptionPolicyselect how to manage the encryption: direct use of Double Ratchet message or encrypt in the cipher message and use the DR message to share the cipher message key default is optimized output size mode.

◆ encrypt() [2/2]

org.linphone.lime.LimeManager.encrypt ( String  localDeviceId,
String  recipientUserId,
RecipientData []  recipients,
byte []  plainMessage,
LimeOutputBuffer  cipherMessage,
LimeStatusCallback  statusObj 
)
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

convenience form using LimeEncryptionPolicy.OPTIMIZEUPLOADSIZE as default policy

◆ get_peerDeviceStatus()

LimePeerDeviceStatus org.linphone.lime.LimeManager.get_peerDeviceStatus ( String  peerDeviceId)
inline

get the status of a peer device: unknown, untrusted, trusted, unsafe

Parameters
[in]peerDeviceIdThe device Id of peer, shall be its GRUU
Returns
unknown if the device is not in localStorage, untrusted, trusted or unsafe according to the stored value of peer device status flag otherwise

◆ get_selfIdentityKey()

native void org.linphone.lime.LimeManager.get_selfIdentityKey ( String  localDeviceId,
LimeOutputBuffer  Ik 
) throws LimeException

retrieve self Identity Key, an EdDSA formatted public key

if specified localDeviceId is not found in local Storage, throw an exception

Parameters
[in]localDeviceIdused to identify which local account we're dealing with, shall be the GRUU
[out]Ikthe EdDSA public identity key, formatted as in RFC8032

◆ get_x3dhServerUrl()

native String org.linphone.lime.LimeManager.get_x3dhServerUrl ( String  localDeviceId) throws LimeException

Get the X3DH key server URL for this identified user if specified localDeviceId is not found in local Storage, throw an exception.

Parameters
[in]localDeviceIdIdentify the local user acount to use, it must be unique and is also be used as Id on the X3DH key server, it shall be the GRUU
Returns
serverURL The complete url(including port) of the X3DH key server.

◆ initialize()

native void org.linphone.lime.LimeManager.initialize ( String  db_access,
LimePostToX3DH  postObj 
)
protected

◆ is_user()

native boolean org.linphone.lime.LimeManager.is_user ( String  localDeviceId) throws LimeException

Check if a user is present and active in local storage.

Parameters
[in]localDeviceIdIdentify the local user acount to use, it must be unique and is also be used as Id on the X3DH key server, it shall be the GRUU
Returns
true if the user is active in the local storage, false otherwise

◆ nativeDestructor()

native void org.linphone.lime.LimeManager.nativeDestructor ( )

Native ressource destructor We cannot rely on finalize (deprecated since java9), it must explicitely be called before the object is destroyed by the java environment.

◆ process_X3DHresponse()

static native void org.linphone.lime.LimeManager.process_X3DHresponse ( long  ptr,
int  responseCode,
byte []  response 
)
static

native function to process the X3DH server response

This function must be called by the response handler to forward the response (and http answer code)

Parameters
[in]ptra native object pointer passed to the postToX3DH method
[in]responseCodethe HTTP server response code
[in]responsethe binary X3DH server response

◆ set_peerDeviceStatus() [1/2]

void org.linphone.lime.LimeManager.set_peerDeviceStatus ( String  peerDeviceId,
byte []  Ik,
LimePeerDeviceStatus  status 
) throws LimeException
inline

set the peer device status flag in local storage: unsafe, trusted or untrusted.

Parameters
[in]peerDeviceIdThe device Id of peer, shall be its GRUU
[in]Ikthe EdDSA peer public identity key, formatted as in RFC8032
[in]statusvalue of flag to set: accepted values are trusted, untrusted, unsafe

throw an exception if given key doesn't match the one present in local storage if the status flag value is unexpected (not one of trusted, untrusted, unsafe), ignore the call if the status flag is unsafe or untrusted, ignore the value of Ik and call the version of this function without it

if peer Device is not present in local storage and status is trusted or unsafe, it is added, if status is untrusted, it is just ignored

General algorithm followed by the set_peerDeviceStatus functions

  • Status is valid? (not one of trusted, untrusted, unsafe)? No: return
  • status is trusted
    • We have Ik? -> No: return
    • Device is already in storage but Ik differs from the given one : exception
    • Insert/update in local storage
  • status is untrusted
    • Ik is ignored
    • Device already in storage? No: return
    • Device already in storage but current status is unsafe? Yes: return
    • update in local storage -status is unsafe
    • ignore Ik
    • insert/update the status. If inserted, insert an invalid Ik

◆ set_peerDeviceStatus() [2/2]

void org.linphone.lime.LimeManager.set_peerDeviceStatus ( String  peerDeviceId,
LimePeerDeviceStatus  status 
)
inline

set the peer device status flag in local storage: unsafe or untrusted.

This variation allows to set a peer Device status to unsafe or untrusted only whithout providing its identity key Ik

Parameters
[in]peerDeviceIdThe device Id of peer, shall be its GRUU
[in]statusvalue of flag to set: accepted values are untrusted or unsafe

if the status flag value is unexpected (not one of untrusted, unsafe), ignore the call

if peer Device is not present in local storage, it is inserted if status is unsafe and call is ignored if status is untrusted if the status is untrusted but the current status in local storage is unsafe, ignore the call Any call to the other form of the function with a status to unsafe or untrusted is rerouted to this function

◆ set_x3dhServerUrl()

native void org.linphone.lime.LimeManager.set_x3dhServerUrl ( String  localDeviceId,
String  serverURL 
) throws LimeException

Set the X3DH key server URL for this identified user if specified localDeviceId is not found in local Storage, throw an exception.

Parameters
[in]localDeviceIdIdentify the local user acount to use, it must be unique and is also be used as Id on the X3DH key server, it shall be the GRUU
[in]serverURLThe complete url(including port) of the X3DH key server. It must connect using HTTPS. Example: https://sip5.linphone.org:25519

◆ stale_sessions()

native void org.linphone.lime.LimeManager.stale_sessions ( String  localDeviceId,
String  peerDeviceId 
) throws LimeException

Stale all sessions between localDeviceId and peerDevice. If peerDevice keep using this session to encrypt and we decrypt with success, the session will be reactivated but to encrypt a message to this peerDevice, a new session will be created. If no session is active between the given device, this call has no effect.

Parameters
[in]localDeviceIdIdentify the local user account, it must be unique and is also be used as Id on the X3DH key server, it shall be the GRUU
[in]peerDeviceIdThe device Id of peer, shall be its GRUU

◆ update() [1/2]

void org.linphone.lime.LimeManager.update ( LimeStatusCallback  statusObj,
int  OPkServerLowLimit,
int  OPkBatchSize 
)
inline

Update: shall be called once a day at least, performs checks, updates and cleaning operations.

  • check if we shall update a new SPk to X3DH server(SPk lifetime is set in settings)
  • check if we need to upload OPks to X3DH server
  • remove old SPks, clean double ratchet sessions (remove staled, clean their stored keys for skipped messages)

Is performed for all users founds in local storage

Parameters
[in]statusObjThis operation may contact the X3DH server and is thus asynchronous, when server responds, this statusObj.callback will be called giving the exit status and an error message in case of failure.
[in]OPkServerLowLimitIf server holds less OPk than this limit, generate and upload a batch of OPks
[in]OPkBatchSizeNumber of OPks in a batch uploaded to server
Note
The last two parameters are optional, if not used, set to defaults defined in lime::settings (not done with param default value as the lime::settings shall not be available in public include)

◆ update() [2/2]

org.linphone.lime.LimeManager.update ( LimeStatusCallback  statusObj)
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

convenience form using default server limit(100) and batch size(25)


The documentation for this class was generated from the following file: