diff options
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 | 53 |
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 | ||
| 18 | The function | ||
| 19 | .Fn OPENSSL_load_builtin_modules | ||
| 20 | adds all the standard OpenSSL configuration modules to the internal | ||
| 21 | list. | ||
| 22 | They can then be used by the OpenSSL configuration code. | ||
| 23 | .Pp | ||
| 24 | .Fn ASN1_add_oid_module | ||
| 25 | adds just the ASN1 OBJECT module. | ||
| 26 | .Pp | ||
| 27 | .Fn ENGINE_add_conf_module | ||
| 28 | adds just the ENGINE configuration module. | ||
| 29 | .Pp | ||
| 30 | If the simple configuration function | ||
| 31 | .Xr OPENSSL_config 3 | ||
| 32 | is called then | ||
| 33 | .Fn OPENSSL_load_builtin_modules | ||
| 34 | is called automatically. | ||
| 35 | .Pp | ||
| 36 | Applications which use the configuration functions directly will need to | ||
| 37 | call | ||
| 38 | .Fn OPENSSL_load_builtin_modules | ||
| 39 | themselves | ||
| 40 | .Em before | ||
| 41 | any other configuration code. | ||
| 42 | .Pp | ||
| 43 | Applications should call | ||
| 44 | .Fn OPENSSL_load_builtin_modules | ||
| 45 | to load all configuration modules instead of adding modules selectively: | ||
| 46 | otherwise functionality may be missing from the application when | ||
| 47 | new modules are added. | ||
| 48 | .Sh RETURN VALUE | ||
| 49 | None of the functions return a value. | ||
| 50 | .Sh SEE ALSO | ||
| 51 | .Xr OPENSSL_config 3 | ||
| 52 | .Sh HISTORY | ||
| 53 | These functions first appeared in OpenSSL 0.9.7. | ||
