summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/engine.pod
diff options
context:
space:
mode:
authorbcook <>2015-06-19 06:05:11 +0000
committerbcook <>2015-06-19 06:05:11 +0000
commit3293ee7f21e12c11500db87f81e518c9dada1317 (patch)
tree538e72acb11427108f44223401736d2fbf8567b3 /src/lib/libcrypto/doc/engine.pod
parent1e5789c97a8071094172fd10fb49618ac87026ef (diff)
downloadopenbsd-3293ee7f21e12c11500db87f81e518c9dada1317.tar.gz
openbsd-3293ee7f21e12c11500db87f81e518c9dada1317.tar.bz2
openbsd-3293ee7f21e12c11500db87f81e518c9dada1317.zip
Disable ENGINE_load_dynamic (dynamic engine support).
We do not build, test or ship any dynamic engines, so we can remove the dynamic engine loader as well. This leaves a stub initialization function in its place. ok beck@, reyk@, miod@
Diffstat (limited to 'src/lib/libcrypto/doc/engine.pod')
-rw-r--r--src/lib/libcrypto/doc/engine.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/doc/engine.pod b/src/lib/libcrypto/doc/engine.pod
index 4a6ee59138..578a702371 100644
--- a/src/lib/libcrypto/doc/engine.pod
+++ b/src/lib/libcrypto/doc/engine.pod
@@ -309,11 +309,11 @@ consideration is whether any/all available ENGINE implementations should be
309made visible to OpenSSL - this is controlled by calling the various "load" 309made visible to OpenSSL - this is controlled by calling the various "load"
310functions, eg. 310functions, eg.
311 311
312 /* Make the "dynamic" ENGINE available */
313 void ENGINE_load_dynamic(void);
314 ...
315 /* Make ALL ENGINE implementations bundled with OpenSSL available */ 312 /* Make ALL ENGINE implementations bundled with OpenSSL available */
316 void ENGINE_load_builtin_engines(void); 313 ENGINE_load_builtin_engines();
314
315Note that ENGINE_load_dynamic(void) is a placeholder and does not enable
316dynamic engine loading support.
317 317
318Having called any of these functions, ENGINE objects would have been 318Having called any of these functions, ENGINE objects would have been
319dynamically allocated and populated with these implementations and linked 319dynamically allocated and populated with these implementations and linked