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 void ENGINE_add_conf_module(void);
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 config(5), OPENSSL_config(3)
43
45 Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.
46
47 Licensed under the OpenSSL license (the "License"). You may not use
48 this file except in compliance with the License. You can obtain a copy
49 in the file LICENSE in the source distribution or at
50 <https://www.openssl.org/source/license.html>.
51
52
53
541.1.1q 2022-07-07 OPENSSL_LOAD_BUILTIN_MODULES(3)