Append an octet-string parameter by reference until OSSL_PARAM_BLD_to_param().
Declared in <openssl/param_build.h>
int
OSSL_PARAM_BLD_push_octet_string(
OSSL_PARAM_BLD* bld,
char const* key,
void const* buf,
size_t bsize);
1 on success, or 0 on error.
| Name | Description |
|---|---|
| bld | Parameter builder. |
| key | Parameter name string. |
| buf | Octet buffer that must remain in scope until to_param. |
| bsize | Length of buf in bytes. |