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.
24 lines
649 B
C
24 lines
649 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
// Maximum length of the profile pic URL (not including the null terminator)
|
|
extern const size_t PROFILE_PIC_MAX_URL_LENGTH;
|
|
|
|
typedef struct user_profile_pic {
|
|
// Null-terminated C string containing the uploaded URL of the pic. Will be length 0 if there
|
|
// is no profile pic.
|
|
char url[224];
|
|
// The profile pic decryption key, in bytes. This is a byte buffer of length 32, *not* a
|
|
// null-terminated C string. This is only valid when there is a url (i.e. url has strlen > 0).
|
|
unsigned char key[32];
|
|
} user_profile_pic;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|