OSSL_PARAM_construct_int32

Construct an OSSL_PARAM describing a signed 32-bit integer buffer.

Synopsis

Declared in <openssl/params.h>

OSSL_PARAM
OSSL_PARAM_construct_int32(
    char const* key,
    int32_t* buf);

Return Value

OSSL_PARAM of type OSSL_PARAM_INTEGER sized for int32_t.

Parameters

NameDescription
keyParameter name stored in the returned descriptor.
bufAddress of the int32_t value associated with key.