From e644cfa286282f1be26241bb1e862d985d38820b Mon Sep 17 00:00:00 2001 From: reyk <> Date: Mon, 14 Apr 2014 09:36:26 +0000 Subject: Remove the nCipher CHIL engine. It is not standalone and depends on external libraries that aren't covered by the same license. --- src/lib/libcrypto/ts/ts_conf.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/lib/libcrypto/ts/ts_conf.c') diff --git a/src/lib/libcrypto/ts/ts_conf.c b/src/lib/libcrypto/ts/ts_conf.c index c39be76f28..212f8bf702 100644 --- a/src/lib/libcrypto/ts/ts_conf.c +++ b/src/lib/libcrypto/ts/ts_conf.c @@ -217,9 +217,6 @@ int TS_CONF_set_default_engine(const char *name) if (strcmp(name, "builtin") == 0) return 1; if (!(e = ENGINE_by_id(name))) goto err; - /* Enable the use of the NCipher HSM for forked children. */ - if (strcmp(name, "chil") == 0) - ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0); /* All the operations are going to be carried out by the engine. */ if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) goto err; ret = 1; -- cgit v1.2.3-55-g6feb