diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2014-04-14 16:49:11 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2014-04-14 16:49:11 +0000 |
commit | 412513741b60bac892287fdf9b9e313a0e7bb554 (patch) | |
tree | 592e5bfe4800e7978e08b815ec8a153d6666c7c4 /lib/libcrypto/engine | |
parent | 83e3808b4cdaefdbfd853e507d610192da3bcbe1 (diff) |
Remove the GMP engine: It was an experimental engine using libgmp as
an alternative backend for BIGNUM calculations. It is PoC code that
is not enabled in OpenSSL and probably not used by anymore.
ok deraadt@
Diffstat (limited to 'lib/libcrypto/engine')
-rw-r--r-- | lib/libcrypto/engine/eng_all.c | 3 | ||||
-rw-r--r-- | lib/libcrypto/engine/engine.h | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/libcrypto/engine/eng_all.c b/lib/libcrypto/engine/eng_all.c index cf7d81d9ade..2fbfc448fd5 100644 --- a/lib/libcrypto/engine/eng_all.c +++ b/lib/libcrypto/engine/eng_all.c @@ -89,9 +89,6 @@ void ENGINE_load_builtin_engines(void) #ifndef OPENSSL_NO_GOST ENGINE_load_gost(); #endif -#ifndef OPENSSL_NO_GMP - ENGINE_load_gmp(); -#endif #endif ENGINE_register_all_complete(); } diff --git a/lib/libcrypto/engine/engine.h b/lib/libcrypto/engine/engine.h index 9f05b6d8f4a..425720e9886 100644 --- a/lib/libcrypto/engine/engine.h +++ b/lib/libcrypto/engine/engine.h @@ -317,9 +317,6 @@ void ENGINE_load_openssl(void); void ENGINE_load_dynamic(void); #ifndef OPENSSL_NO_STATIC_ENGINE void ENGINE_load_padlock(void); -#ifndef OPENSSL_NO_GMP -void ENGINE_load_gmp(void); -#endif #ifndef OPENSSL_NO_GOST void ENGINE_load_gost(void); #endif |