pref numbers and switch to ltm

This commit is contained in:
Love Hornquist Astrand
2010-07-18 14:08:26 -07:00
parent e7c7091ae5
commit b9754f1def
2 changed files with 5 additions and 4 deletions

View File

@@ -236,9 +236,9 @@ ENGINE_load_builtin_engines(void)
ENGINE_set_id(engine, "builtin"); ENGINE_set_id(engine, "builtin");
ENGINE_set_name(engine, ENGINE_set_name(engine,
"Heimdal crypto builtin engine version " PACKAGE_VERSION); "Heimdal crypto builtin (ltm) engine version " PACKAGE_VERSION);
ENGINE_set_RSA(engine, RSA_tfm_method()); ENGINE_set_RSA(engine, RSA_ltm_method());
ENGINE_set_DH(engine, DH_tfm_method()); ENGINE_set_DH(engine, DH_ltm_method());
ret = add_engine(engine); ret = add_engine(engine);
if (ret != 1) if (ret != 1)

View File

@@ -56,7 +56,8 @@
* operation performed each eteration sign, verify, encrypt, decrypt on a random bit pattern * operation performed each eteration sign, verify, encrypt, decrypt on a random bit pattern
* *
* gmp: 0.733615 * gmp: 0.733615
* tfm: 2.450173 (default in hcrypto) * tfm: 2.450173
* ltm: 2.452774 (default in hcrypto)
* openssl: 4.046564 * openssl: 4.046564
* imath: 22.975163 * imath: 22.975163
* *