OSSL_PARAM_set_utf8_ptr

Set a UTF-8 pointer parameter to refer to val (no copy).

Synopsis

Declared in <openssl/params.h>

int
OSSL_PARAM_set_utf8_ptr(
    OSSL_PARAM* p,
    char const* val);

Return Value

1 on success, or 0 on type failure.

Parameters

NameDescription
pParameter locator with type OSSL_PARAM_UTF8_PTR.
valPointer to a NUL-terminated string retained by the caller.