diff options
| author | bcook <> | 2015-06-19 06:05:11 +0000 |
|---|---|---|
| committer | bcook <> | 2015-06-19 06:05:11 +0000 |
| commit | 1ef7c35782edea8e65610a2d9d6d6d08ea90983c (patch) | |
| tree | 538e72acb11427108f44223401736d2fbf8567b3 /src/lib/libcrypto/doc/engine.pod | |
| parent | bbb9ffa5138c3c5789944a49a1723c3f37a04fef (diff) | |
| download | openbsd-1ef7c35782edea8e65610a2d9d6d6d08ea90983c.tar.gz openbsd-1ef7c35782edea8e65610a2d9d6d6d08ea90983c.tar.bz2 openbsd-1ef7c35782edea8e65610a2d9d6d6d08ea90983c.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 |
