OSSL_PARAM_construct_uint64

Construct an OSSL_PARAM describing an unsigned 64-bit integer at buf.

Synopsis

Declared in <openssl/params.h>

OSSL_PARAM
OSSL_PARAM_construct_uint64(
    char const* key,
    uint64_t* buf);

Return Value

OSSL_PARAM value suitable for inclusion in a parameter array.

Parameters

NameDescription
keyParameter name (for example OSSL_PKEY_PARAM_*).
bufAddress of the uint64_t value to expose.