[#OSSL_PARAM_set_int] = OSSL_PARAM_set_int :mrdocs: Store a signed int into an OSSL_PARAM integer buffer. == Synopsis Declared in `<openssl/params.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OSSL_PARAM_set_int( xref:OSSL_PARAM.adoc[OSSL_PARAM]* p, int val); ---- == Return Value 1 on success, or 0 if the buffer is too small or of the wrong type. == Parameters [cols="1,4"] |=== | Name| Description | *p* | Parameter whose buffer receives `val.` | *val* | Value to write. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#