2019-02-22 13:17:26 -05:00
|
|
|
#include <glib.h>
|
|
|
|
|
2019-02-19 12:38:15 -05:00
|
|
|
#include "config/account.h"
|
|
|
|
|
2019-02-19 12:58:40 -05:00
|
|
|
typedef struct omemo_context_t omemo_context;
|
|
|
|
|
2019-02-19 13:23:50 -05:00
|
|
|
void omemo_init(void);
|
|
|
|
void omemo_generate_crypto_materials(ProfAccount *account);
|
2019-02-21 13:04:01 -05:00
|
|
|
|
|
|
|
uint32_t omemo_device_id(void);
|
|
|
|
void omemo_identity_key(unsigned char **output, size_t *length);
|
|
|
|
void omemo_signed_prekey(unsigned char **output, size_t *length);
|
|
|
|
void omemo_signed_prekey_signature(unsigned char **output, size_t *length);
|
|
|
|
void omemo_prekeys(GList ** const prekeys, GList ** const ids, GList ** const lengths);
|
2019-02-24 23:24:03 -05:00
|
|
|
void omemo_set_device_list(const char *const jid, GList * device_list);
|
2019-02-21 13:04:01 -05:00
|
|
|
|
|
|
|
void omemo_start_session(ProfAccount *account, char *barejid);
|
|
|
|
gboolean omemo_loaded(void);
|