mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
dcaf8caed0
* Add x3dh key exchange * Encrypt using the double ratchet * Multi device with auto-pairing * Add pfs enabled flag
24 lines
607 B
C
24 lines
607 B
C
/* ---- LTC_BASE64 Routines ---- */
|
|
#ifdef LTC_BASE64
|
|
int base64_encode(const unsigned char *in, unsigned long len,
|
|
unsigned char *out, unsigned long *outlen);
|
|
|
|
int base64_decode(const unsigned char *in, unsigned long len,
|
|
unsigned char *out, unsigned long *outlen);
|
|
#endif
|
|
|
|
/* ---- MEM routines ---- */
|
|
void zeromem(void *dst, size_t len);
|
|
void burn_stack(unsigned long len);
|
|
|
|
const char *error_to_string(int err);
|
|
|
|
extern const char *crypt_build_settings;
|
|
|
|
/* ---- HMM ---- */
|
|
int crypt_fsa(void *mp, ...);
|
|
|
|
/* $Source$ */
|
|
/* $Revision$ */
|
|
/* $Date$ */
|