Typedefs | |
typedef codec_gzip_s | codec_gzip_t |
typedef codec_null_s | codec_null_t |
Functions | |
int | codec_cipher_create (int op, const EVP_CIPHER *cipher, unsigned char *key, unsigned char *iv, codec_t **pcc) |
Create a cipher codec_t object. | |
int | codec_free (codec_t *codec) |
Dispose all the resources allocated to the supplied codec. | |
int | codec_gzip_create (int op, codec_t **piz) |
Create a cipher codec_t object. | |
int | codec_null_create (codec_t **pcn) |
Create a cipher codec_t object. |
|
Definition at line 35 of file gzip.c. Referenced by codec_gzip_create(). |
|
Definition at line 27 of file null.c. Referenced by codec_null_create(). |
|
Create a cipher
Definition at line 172 of file cipher.c. References codec_s::cbuf, CODEC_CIPHER_MAX_INPUT, codec_cipher_t, codec_t, codec_s::flush, codec_s::free, and codec_s::transform. Referenced by session_prv_load_from_io(), session_prv_save_to_io(), and translate(). |
|
Dispose all the resources allocated to the supplied
Definition at line 28 of file codec.c. References codec_t, and codec_s::free. Referenced by emb_open(), io_codecs_remove(), session_prv_load_from_io(), session_prv_save_to_io(), and translate(). |
|
Create a gzip
Definition at line 142 of file gzip.c. References codec_gzip_t, codec_t, codec_s::flush, codec_s::free, GZIP_COMPRESS, GZIP_UNCOMPRESS, and codec_s::transform. Referenced by emb_open(), session_prv_load_from_io(), session_prv_save_to_io(), and translate(). |
|
Create a null
Definition at line 74 of file null.c. References codec_null_t, and codec_t. |