Lines Matching refs:engine
1050 ENGINE *engine = ENGINE_new(); in ENGINE_load_cryptodev() local
1053 if (engine == NULL) in ENGINE_load_cryptodev()
1056 ENGINE_free(engine); in ENGINE_load_cryptodev()
1065 ENGINE_free(engine); in ENGINE_load_cryptodev()
1070 if (!ENGINE_set_id(engine, "cryptodev") || in ENGINE_load_cryptodev()
1071 !ENGINE_set_name(engine, "BSD cryptodev engine") || in ENGINE_load_cryptodev()
1072 !ENGINE_set_ciphers(engine, cryptodev_engine_ciphers) || in ENGINE_load_cryptodev()
1073 !ENGINE_set_digests(engine, cryptodev_engine_digests) || in ENGINE_load_cryptodev()
1074 !ENGINE_set_ctrl_function(engine, cryptodev_ctrl) || in ENGINE_load_cryptodev()
1075 !ENGINE_set_cmd_defns(engine, cryptodev_defns)) { in ENGINE_load_cryptodev()
1076 ENGINE_free(engine); in ENGINE_load_cryptodev()
1080 if (ENGINE_set_RSA(engine, &cryptodev_rsa)) { in ENGINE_load_cryptodev()
1100 if (ENGINE_set_DSA(engine, &cryptodev_dsa)) { in ENGINE_load_cryptodev()
1114 if (ENGINE_set_DH(engine, &cryptodev_dh)){ in ENGINE_load_cryptodev()
1128 ENGINE_add(engine); in ENGINE_load_cryptodev()
1129 ENGINE_free(engine); in ENGINE_load_cryptodev()