Write val into parameter as an unsigned long (with range checks).
Declared in <openssl/params.h>
int
OSSL_PARAM_set_ulong(
OSSL_PARAM* p,
unsigned long val);
1 on success, or 0 if is NULL, wrong type, or out of range.
| Name | Description |
|---|---|
| p | Destination parameter located by key in an OSSL_PARAM array. |
| val | Value to store. |