OSSL_PARAM_construct_double

Construct an OSSL_PARAM describing a double located at buf.

Synopsis

Declared in <openssl/params.h>

OSSL_PARAM
OSSL_PARAM_construct_double(
    char const* key,
    double* buf);

Return Value

OSSL_PARAM suitable for inclusion in a parameter array.

Parameters

NameDescription
keyParameter name.
bufAddress of the double value (read or written by the callee).