Most of the Eet File Main Functions have alternative versions that accounts for ciphers to protect their content. More...
Functions | |
EAPI void * | eet_read_cipher (Eet_File *ef, const char *name, int *size_ret, const char *cipher_key) |
Reads a specified entry from an eet file and return data using a cipher. More... | |
EAPI int | eet_write_cipher (Eet_File *ef, const char *name, const void *data, int size, int compress, const char *cipher_key) |
Writes a specified entry to an eet file handle using a cipher. More... | |
Most of the Eet File Main Functions have alternative versions that accounts for ciphers to protect their content.
EAPI void * eet_read_cipher | ( | Eet_File * | ef, |
const char * | name, | ||
int * | size_ret, | ||
const char * | cipher_key | ||
) |
Reads a specified entry from an eet file and return data using a cipher.
ef | A valid eet file handle opened for reading. |
name | Name of the entry. eg: "/base/file_i_want". |
size_ret | Number of bytes read from entry and returned. |
cipher_key | The key to use as cipher. |
This function finds an entry in the eet file that is stored under the name specified, and returns that data, decompressed, if successful. NULL is returned if the lookup fails or if memory errors are encountered. It is the job of the calling program to call free() on the returned data. The number of bytes in the returned data chunk are placed in size_ret.
If the eet file handle is not valid NULL is returned and size_ret is filled with 0
.
References EET_FILE_MODE_READ, EET_FILE_MODE_READ_WRITE, and emile_binbuf_decipher().
Referenced by eet_data_image_colorspace_get(), eet_data_image_header_read_cipher(), eet_data_image_read_cipher(), eet_data_image_read_to_cspace_surface_cipher(), eet_data_node_read_cipher(), eet_data_read_cipher(), eet_data_read_cipher_buffer(), and eet_read().
EAPI int eet_write_cipher | ( | Eet_File * | ef, |
const char * | name, | ||
const void * | data, | ||
int | size, | ||
int | compress, | ||
const char * | cipher_key | ||
) |
Writes a specified entry to an eet file handle using a cipher.
ef | A valid eet file handle opened for writing. |
name | Name of the entry. eg: "/base/file_i_want". |
data | Pointer to the data to be stored. |
size | Length in bytes in the data to be stored. |
compress | Compression flags (1 == compress, 0 = don't compress). |
cipher_key | The key to use as cipher. |
0
on failure.This function will write the specified chunk of data to the eet file and return greater than 0
on success. 0 will be returned on failure.
The eet file handle must be a valid file handle for an eet file opened for writing. If it is not, 0
will be returned and no action will be performed.
Name, and data must not be NULL, and size must be > 0. If these conditions are not met, 0 will be returned.
The data will be copied (and optionally compressed) in ram, pending a flush to disk (it will stay in ram till the eet file handle is closed though).
References EET_FILE_MODE_READ_WRITE, EET_FILE_MODE_WRITE, eina_binbuf_manage_new(), EINA_TRUE, and emile_compress().
Referenced by eet_data_image_write_cipher(), eet_data_node_write_cipher(), eet_data_undump_cipher(), eet_data_write_cipher(), and eet_write().