Home
last modified time | relevance | path

Searched refs:ENGINE_ctrl_cmd_string (Results 1 – 9 of 9) sorted by relevance

/onnv-gate/usr/src/common/openssl/crypto/engine/
H A Deng_cnf.c148 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", ctrlvalue, 0)) in int_engine_configure()
150 if (!ENGINE_ctrl_cmd_string(e, "LIST_ADD", "2", 0)) in int_engine_configure()
152 if (!ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) in int_engine_configure()
192 else if (!ENGINE_ctrl_cmd_string(e, in int_engine_configure()
H A Deng_list.c406 if(!iterator || !ENGINE_ctrl_cmd_string(iterator, "ID", id, 0) || in ENGINE_by_id()
407 !ENGINE_ctrl_cmd_string(iterator, "DIR_LOAD", "2", 0) || in ENGINE_by_id()
408 !ENGINE_ctrl_cmd_string(iterator, "DIR_ADD", in ENGINE_by_id()
410 !ENGINE_ctrl_cmd_string(iterator, "LOAD", NULL, 0)) in ENGINE_by_id()
H A Deng_ctrl.c288 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, in ENGINE_ctrl_cmd_string() function
H A Dengine.h443 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
/onnv-gate/usr/src/common/openssl/apps/
H A Dengine.c315 if(!ENGINE_ctrl_cmd_string(e, cmd, NULL, 0)) in util_do_cmds()
329 if(!ENGINE_ctrl_cmd_string(e, buf, arg, 0)) in util_do_cmds()
H A Dapps.c1341 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0) in try_load_engine()
1342 || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) in try_load_engine()
/onnv-gate/usr/src/common/openssl/
H A DREADME.ENGINE176 ENGINE_ctrl_cmd_string(e, "SO_PATH", "/lib/libfoo.so", 0);
177 ENGINE_ctrl_cmd_string(e, "ID", "foo", 0);
178 ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0);
179 ENGINE_ctrl_cmd_string(e, "CMD_FOO", "some input data", 0);
H A DCHANGES2132 the new string-based API function ENGINE_ctrl_cmd_string(). (Eg. this
/onnv-gate/usr/src/common/openssl/doc/crypto/
H A Dengine.pod100 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
470 if(!ENGINE_ctrl_cmd_string(e, pre_cmds[0], pre_cmds[1], 0)) {
487 if(!ENGINE_ctrl_cmd_string(e, post_cmds[0], post_cmds[1], 0)) {
500 Note that ENGINE_ctrl_cmd_string() accepts a boolean argument that can
574 for any higher-level ENGINE functions such as ENGINE_ctrl_cmd_string().