diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2014-04-14 14:56:02 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2014-04-14 14:56:02 +0000 |
commit | 86ae3e1055fa129371835811a2463c04f75105ce (patch) | |
tree | b4bf4c40f5cdd3dd98c0d5cc055b23834ba216a0 /lib | |
parent | e72c0d159f48725ae3c8541bc52761b5c6f2f1e7 (diff) |
Remove the CAPI engine: It is a backend for the Windows CryptoAPI and
could be maintained in an external package.
"it should probably go" beck@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/engine/eng_all.c | 3 | ||||
-rw-r--r-- | lib/libcrypto/engine/engine.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/libcrypto/engine/eng_all.c b/lib/libcrypto/engine/eng_all.c index f3c4cd9a1c9..cf7d81d9ade 100644 --- a/lib/libcrypto/engine/eng_all.c +++ b/lib/libcrypto/engine/eng_all.c @@ -92,9 +92,6 @@ void ENGINE_load_builtin_engines(void) #ifndef OPENSSL_NO_GMP ENGINE_load_gmp(); #endif -#if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG) - ENGINE_load_capi(); -#endif #endif ENGINE_register_all_complete(); } diff --git a/lib/libcrypto/engine/engine.h b/lib/libcrypto/engine/engine.h index 51a18f3ee26..9f05b6d8f4a 100644 --- a/lib/libcrypto/engine/engine.h +++ b/lib/libcrypto/engine/engine.h @@ -317,7 +317,6 @@ void ENGINE_load_openssl(void); void ENGINE_load_dynamic(void); #ifndef OPENSSL_NO_STATIC_ENGINE void ENGINE_load_padlock(void); -void ENGINE_load_capi(void); #ifndef OPENSSL_NO_GMP void ENGINE_load_gmp(void); #endif |