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