5 OPENSSL_load_builtin_modules - add standard configuration modules
9 #include <openssl/conf.h>
11 void OPENSSL_load_builtin_modules(void);
12 void ASN1_add_oid_module(void);
13 ENGINE_add_conf_module();
17 The function OPENSSL_load_builtin_modules() adds all the standard OpenSSL
18 configuration modules to the internal list. They can then be used by the
19 OpenSSL configuration code.
21 ASN1_add_oid_module() adds just the ASN1 OBJECT module.
23 ENGINE_add_conf_module() adds just the ENGINE configuration module.
27 If the simple configuration function OPENSSL_config() is called then
28 OPENSSL_load_builtin_modules() is called automatically.
30 Applications which use the configuration functions directly will need to
31 call OPENSSL_load_builtin_modules() themselves I<before> any other
34 Applications should call OPENSSL_load_builtin_modules() to load all
35 configuration modules instead of adding modules selectively: otherwise
36 functionality may be missing from the application if an when new
41 None of the functions return a value.
45 L<conf(3)|conf(3)>, L<OPENSSL_config(3)|OPENSSL_config(3)>
49 These functions first appeared in OpenSSL 0.9.7.