diff options
| author | bcook <> | 2015-06-19 06:05:11 +0000 |
|---|---|---|
| committer | bcook <> | 2015-06-19 06:05:11 +0000 |
| commit | 3293ee7f21e12c11500db87f81e518c9dada1317 (patch) | |
| tree | 538e72acb11427108f44223401736d2fbf8567b3 /src/lib/libcrypto/doc/engine.pod | |
| parent | 1e5789c97a8071094172fd10fb49618ac87026ef (diff) | |
| download | openbsd-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.pod | 8 |
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 | |||
| 309 | made visible to OpenSSL - this is controlled by calling the various "load" | 309 | made visible to OpenSSL - this is controlled by calling the various "load" |
| 310 | functions, eg. | 310 | functions, 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 | |||
| 315 | Note that ENGINE_load_dynamic(void) is a placeholder and does not enable | ||
| 316 | dynamic engine loading support. | ||
| 317 | 317 | ||
| 318 | Having called any of these functions, ENGINE objects would have been | 318 | Having called any of these functions, ENGINE objects would have been |
| 319 | dynamically allocated and populated with these implementations and linked | 319 | dynamically allocated and populated with these implementations and linked |
