[#OSSL_LIB_CTX_new_from_dispatch] = OSSL_LIB_CTX_new_from_dispatch :mrdocs: Allocate an OSSL_LIB_CTX wired to core BIO upcalls from a provider dispatch table. == Synopsis Declared in `<openssl/crypto.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* OSSL_LIB_CTX_new_from_dispatch( xref:OSSL_CORE_HANDLE.adoc[OSSL_CORE_HANDLE] const* handle, xref:OSSL_DISPATCH.adoc[OSSL_DISPATCH] const* in); ---- == Return Value New library context, or NULL on failure; free with OSSL_LIB_CTX_free(). == Parameters [cols="1,4"] |=== | Name| Description | *handle* | Core handle passed to the provider (reserved for future use; may be NULL). | *in* | Provider‐to‐core OSSL_DISPATCH table containing BIO upcall function pointers. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#