#include "eng_int.h"
#include <openssl/rand.h>
Go to the source code of this file.
|
ENGINE * | ENGINE_new (void) |
|
void | engine_set_all_null (ENGINE *e) |
|
int | engine_free_util (ENGINE *e, int locked) |
|
int | ENGINE_free (ENGINE *e) |
|
void | engine_cleanup_add_first (ENGINE_CLEANUP_CB *cb) |
|
void | engine_cleanup_add_last (ENGINE_CLEANUP_CB *cb) |
|
void | ENGINE_cleanup (void) |
|
int | ENGINE_get_ex_new_index (long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) |
|
int | ENGINE_set_ex_data (ENGINE *e, int idx, void *arg) |
|
void * | ENGINE_get_ex_data (const ENGINE *e, int idx) |
|
int | ENGINE_set_id (ENGINE *e, const char *id) |
|
int | ENGINE_set_name (ENGINE *e, const char *name) |
|
int | ENGINE_set_destroy_function (ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f) |
|
int | ENGINE_set_init_function (ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f) |
|
int | ENGINE_set_finish_function (ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f) |
|
int | ENGINE_set_ctrl_function (ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f) |
|
int | ENGINE_set_flags (ENGINE *e, int flags) |
|
int | ENGINE_set_cmd_defns (ENGINE *e, const ENGINE_CMD_DEFN *defns) |
|
const char * | ENGINE_get_id (const ENGINE *e) |
|
const char * | ENGINE_get_name (const ENGINE *e) |
|
ENGINE_GEN_INT_FUNC_PTR | ENGINE_get_destroy_function (const ENGINE *e) |
|
ENGINE_GEN_INT_FUNC_PTR | ENGINE_get_init_function (const ENGINE *e) |
|
ENGINE_GEN_INT_FUNC_PTR | ENGINE_get_finish_function (const ENGINE *e) |
|
ENGINE_CTRL_FUNC_PTR | ENGINE_get_ctrl_function (const ENGINE *e) |
|
int | ENGINE_get_flags (const ENGINE *e) |
|
const ENGINE_CMD_DEFN * | ENGINE_get_cmd_defns (const ENGINE *e) |
|
void * | ENGINE_get_static_state (void) |
|
int engine_free_util |
( |
ENGINE * |
e, |
|
|
int |
locked |
|
) |
| |
void* ENGINE_get_ex_data |
( |
const ENGINE * |
e, |
|
|
int |
idx |
|
) |
| |
int ENGINE_get_flags |
( |
const ENGINE * |
e | ) |
|
const char* ENGINE_get_id |
( |
const ENGINE * |
e | ) |
|
const char* ENGINE_get_name |
( |
const ENGINE * |
e | ) |
|
int ENGINE_set_ex_data |
( |
ENGINE * |
e, |
|
|
int |
idx, |
|
|
void * |
arg |
|
) |
| |
int ENGINE_set_flags |
( |
ENGINE * |
e, |
|
|
int |
flags |
|
) |
| |
int ENGINE_set_id |
( |
ENGINE * |
e, |
|
|
const char * |
id |
|
) |
| |
int ENGINE_set_name |
( |
ENGINE * |
e, |
|
|
const char * |
name |
|
) |
| |