1OPENSSL_load_builtin_modules(3) OpenSSL OPENSSL_load_builtin_modules(3)
2
3
4
6 OPENSSL_load_builtin_modules, ASN1_add_oid_module,
7 ENGINE_add_conf_module - add standard configuration modules
8
10 #include <openssl/conf.h>
11
12 void OPENSSL_load_builtin_modules(void);
13 void ASN1_add_oid_module(void);
14 ENGINE_add_conf_module();
15
17 The function OPENSSL_load_builtin_modules() adds all the standard
18 OpenSSL configuration modules to the internal list. They can then be
19 used by the OpenSSL configuration code.
20
21 ASN1_add_oid_module() adds just the ASN1 OBJECT module.
22
23 ENGINE_add_conf_module() adds just the ENGINE configuration module.
24
26 If the simple configuration function OPENSSL_config() is called then
27 OPENSSL_load_builtin_modules() is called automatically.
28
29 Applications which use the configuration functions directly will need
30 to call OPENSSL_load_builtin_modules() themselves before any other
31 configuration code.
32
33 Applications should call OPENSSL_load_builtin_modules() to load all
34 configuration modules instead of adding modules selectively: otherwise
35 functionality may be missing from the application if an when new
36 modules are added.
37
39 None of the functions return a value.
40
42 conf(3), OPENSSL_config(3)
43
45 These functions first appeared in OpenSSL 0.9.7.
46
47
48
491.0.2o 2020-01-28 OPENSSL_load_builtin_modules(3)