Functions
Eet File Ciphered Main Functions

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...
 

Detailed Description

Most of the Eet File Main Functions have alternative versions that accounts for ciphers to protect their content.

See also
Cipher, Identity and Protection Mechanisms

Function Documentation

◆ eet_read_cipher()

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.

Parameters
efA valid eet file handle opened for reading.
nameName of the entry. eg: "/base/file_i_want".
size_retNumber of bytes read from entry and returned.
cipher_keyThe key to use as cipher.
Returns
The data stored in that entry in the eet file.

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.

See also
eet_read()
Since
1.0.0
Examples
eet-data-cipher_decipher.c.

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().

◆ eet_write_cipher()

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.

Parameters
efA valid eet file handle opened for writing.
nameName of the entry. eg: "/base/file_i_want".
dataPointer to the data to be stored.
sizeLength in bytes in the data to be stored.
compressCompression flags (1 == compress, 0 = don't compress).
cipher_keyThe key to use as cipher.
Returns
Bytes written on successful write, 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).

See also
eet_write()
Since
1.0.0
Examples
eet-data-cipher_decipher.c.

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().