OSSL_PARAM_set_uint

Write an unsigned int into the storage located by p.

Synopsis

Declared in <openssl/params.h>

int
OSSL_PARAM_set_uint(
    OSSL_PARAM* p,
    unsigned int val);

Return Value

1 on success, or 0 on type/range failure.

Parameters

NameDescription
pParameter locator describing an unsigned integer-typed destination.
valValue to store.