]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/OPENSSL_load_builtin_modules.pod
Params: add argument to the _from_text calls to indicate if the param exists.
[thirdparty/openssl.git] / doc / man3 / OPENSSL_load_builtin_modules.pod
CommitLineData
f82bb9cb
DSH
1=pod
2
3=head1 NAME
4
aafbe1cc 5OPENSSL_load_builtin_modules, ASN1_add_oid_module, ENGINE_add_conf_module - add standard configuration modules
f82bb9cb
DSH
6
7=head1 SYNOPSIS
8
9 #include <openssl/conf.h>
10
11 void OPENSSL_load_builtin_modules(void);
12 void ASN1_add_oid_module(void);
1f13ad31 13 void ENGINE_add_conf_module(void);
f82bb9cb
DSH
14
15=head1 DESCRIPTION
16
17The function OPENSSL_load_builtin_modules() adds all the standard OpenSSL
18configuration modules to the internal list. They can then be used by the
19OpenSSL configuration code.
20
21ASN1_add_oid_module() adds just the ASN1 OBJECT module.
22
23ENGINE_add_conf_module() adds just the ENGINE configuration module.
24
25=head1 NOTES
26
1bc74519 27If the simple configuration function OPENSSL_config() is called then
f82bb9cb
DSH
28OPENSSL_load_builtin_modules() is called automatically.
29
30Applications which use the configuration functions directly will need to
1bc74519 31call OPENSSL_load_builtin_modules() themselves I<before> any other
f82bb9cb
DSH
32configuration code.
33
34Applications should call OPENSSL_load_builtin_modules() to load all
1bc74519 35configuration modules instead of adding modules selectively: otherwise
f82bb9cb
DSH
36functionality may be missing from the application if an when new
37modules are added.
38
1f13ad31 39=head1 RETURN VALUES
f82bb9cb
DSH
40
41None of the functions return a value.
42
43=head1 SEE ALSO
44
b97fdb57 45L<config(5)>, L<OPENSSL_config(3)>
f82bb9cb 46
e2f92610
RS
47=head1 COPYRIGHT
48
61f805c1 49Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 50
4746f25a 51Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
52this file except in compliance with the License. You can obtain a copy
53in the file LICENSE in the source distribution or at
54L<https://www.openssl.org/source/license.html>.
55
56=cut