X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=doc%2Fman3%2FOPENSSL_CTX.pod;h=01737de2ef50fb0a940e571007c47621c0cede76;hp=5348367135e50368c4a8075a52a2328556541c08;hb=6c689e58f70726cfa5533bc10f9669abce199fb8;hpb=d64b62998beceef8a8b8e1558862eb1c671d677a diff --git a/doc/man3/OPENSSL_CTX.pod b/doc/man3/OPENSSL_CTX.pod index 5348367135..01737de2ef 100644 --- a/doc/man3/OPENSSL_CTX.pod +++ b/doc/man3/OPENSSL_CTX.pod @@ -2,7 +2,9 @@ =head1 NAME -OPENSSL_CTX, OPENSSL_CTX_new, OPENSSL_CTX_free - OpenSSL library context +OPENSSL_CTX, OPENSSL_CTX_new, OPENSSL_CTX_free, OPENSSL_CTX_load_config, +OPENSSL_CTX_set0_default +- OpenSSL library context =head1 SYNOPSIS @@ -11,34 +13,59 @@ OPENSSL_CTX, OPENSSL_CTX_new, OPENSSL_CTX_free - OpenSSL library context typedef struct openssl_ctx_st OPENSSL_CTX; OPENSSL_CTX *OPENSSL_CTX_new(void); + int OPENSSL_CTX_load_config(OPENSSL_CTX *ctx, const char *config_file); void OPENSSL_CTX_free(OPENSSL_CTX *ctx); + OPENSSL_CTX *OPENSSL_CTX_set0_default(OPENSSL_CTX *ctx); =head1 DESCRIPTION -C is an internal OpenSSL library context type. -Applications may allocate their own, but may also use C to use -the internal default context with functions that take a C +B is an internal OpenSSL library context type. +Applications may allocate their own, but may also use NULL to use +a default context with functions that take an B argument. +When a non default library context is in use care should be taken with +multi-threaded applications to properly clean up thread local resources before +the OPENSSL_CTX is freed. +See L for more information. + OPENSSL_CTX_new() creates a new OpenSSL library context. -OPENSSL_CTX_free() frees the given C. +OPENSSL_CTX_load_config() loads a configuration file using the given C. +This can be used to associate a library context with providers that are loaded +from a configuration. + +OPENSSL_CTX_free() frees the given I, unless it happens to be the +default OpenSSL library context. + +OPENSSL_CTX_set0_default() sets the default OpenSSL library context to be +I in the current thread. The previous default library context is +returned. Care should be taken by the caller to restore the previous +default library context with a subsequent call of this function. + +Care should be taken when changing the default library context and starting +async jobs (see L), as the default library context when +the job is started will be used throughout the lifetime of an async job, no +matter how the calling thread makes further default library context changes +in the mean time. This means that the calling thread must not free the +library context that was the default at the start of the async job before +that job has finished. =head1 RETURN VALUES -OPENSSL_CTX_new() return a library context pointer on success, or -C on error. +OPENSSL_CTX_new() and OPENSSL_CTX_set0_default() return a library context +pointer on success, or NULL on error. OPENSSL_CTX_free() doesn't return any value. =head1 HISTORY -OPENSSL_CTX, OPENSSL_CTX_new() and OPENSSL_CTX_free() -were added in OpenSSL 3.0.0. +OPENSSL_CTX, OPENSSL_CTX_new(), OPENSSL_CTX_load_config(), OPENSSL_CTX_free() +and OPENSSL_CTX_set0_default() were added in OpenSSL 3.0. =head1 COPYRIGHT -Copyright 2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy