OSSL_PARAM_construct_uint

Construct an OSSL_PARAM that locates an unsigned int value.

Synopsis

Declared in <openssl/params.h>

OSSL_PARAM
OSSL_PARAM_construct_uint(
    char const* key,
    unsigned int* buf);

Return Value

Initialized OSSL_PARAM value (by value).

Parameters

NameDescription
keyParameter name.
bufAddress of the unsigned int to read or write.