mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
524 B
C
22 lines
524 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct user_profile_pic {
|
|
// Null-terminated C string containing the uploaded URL of the pic. Will be NULL if there is no
|
|
// profile pic.
|
|
const char* url;
|
|
// The profile pic decryption key, in bytes. This is a byte buffer of length `keylen`, *not* a
|
|
// null-terminated C string. Will be NULL if there is no profile pic.
|
|
const unsigned char* key;
|
|
size_t keylen;
|
|
} user_profile_pic;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|