summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3
diff options
context:
space:
mode:
authorschwarze <>2016-11-03 12:21:50 +0000
committerschwarze <>2016-11-03 12:21:50 +0000
commit61150c63123fd35d04d23a0f8879a03f82044004 (patch)
tree0a5cc7708ea5734467780929f9b2612a488b25fe /src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3
parent99421a4d33ceb28652f51f4a28160d96485e712e (diff)
downloadopenbsd-61150c63123fd35d04d23a0f8879a03f82044004.tar.gz
openbsd-61150c63123fd35d04d23a0f8879a03f82044004.tar.bz2
openbsd-61150c63123fd35d04d23a0f8879a03f82044004.zip
convert configuration manuals from pod to mdoc
Diffstat (limited to 'src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3')
-rw-r--r--src/lib/libcrypto/man/OPENSSL_load_builtin_modules.353
1 files changed, 53 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 b/src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3
new file mode 100644
index 0000000000..2a107ab7c4
--- /dev/null
+++ b/src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3
@@ -0,0 +1,53 @@
1.Dd $Mdocdate: November 3 2016 $
2.Dt OPENSSL_LOAD_BUILTIN_MODULES 3
3.Os
4.Sh NAME
5.Nm OPENSSL_load_builtin_modules ,
6.Nm ASN1_add_oid_module ,
7.Nm ENGINE_add_conf_module
8.Nd add standard configuration modules
9.Sh SYNOPSIS
10.In openssl/conf.h
11.Ft void
12.Fn OPENSSL_load_builtin_modules void
13.Ft void
14.Fn ASN1_add_oid_module void
15.Ft void
16.Fn ENGINE_add_conf_module void
17.Sh DESCRIPTION
18The function
19.Fn OPENSSL_load_builtin_modules
20adds all the standard OpenSSL configuration modules to the internal
21list.
22They can then be used by the OpenSSL configuration code.
23.Pp
24.Fn ASN1_add_oid_module
25adds just the ASN1 OBJECT module.
26.Pp
27.Fn ENGINE_add_conf_module
28adds just the ENGINE configuration module.
29.Pp
30If the simple configuration function
31.Xr OPENSSL_config 3
32is called then
33.Fn OPENSSL_load_builtin_modules
34is called automatically.
35.Pp
36Applications which use the configuration functions directly will need to
37call
38.Fn OPENSSL_load_builtin_modules
39themselves
40.Em before
41any other configuration code.
42.Pp
43Applications should call
44.Fn OPENSSL_load_builtin_modules
45to load all configuration modules instead of adding modules selectively:
46otherwise functionality may be missing from the application when
47new modules are added.
48.Sh RETURN VALUE
49None of the functions return a value.
50.Sh SEE ALSO
51.Xr OPENSSL_config 3
52.Sh HISTORY
53These functions first appeared in OpenSSL 0.9.7.