[#OSSL_PARAM_construct_utf8_ptr] = OSSL_PARAM_construct_utf8_ptr :mrdocs: Construct an OSSL_PARAM describing a pointer to a UTF‐8 string buffer. == Synopsis Declared in `<openssl/params.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:OSSL_PARAM.adoc[OSSL_PARAM] OSSL_PARAM_construct_utf8_ptr( char const* key, char** buf, size_t bsize); ---- == Return Value Initialized OSSL_PARAM value (by value). == Parameters [cols="1,4"] |=== | Name| Description | *key* | Parameter name. | *buf* | Address of a char* that locates the UTF‐8 string. | *bsize* | Maximum string capacity in bytes, or 0 if unknown. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#