[#OSSL_PARAM_get_octet_string_ptr] = OSSL_PARAM_get_octet_string_ptr :mrdocs: Return a pointer to the octet‐string contents of an OSSL_PARAM without copying. == Synopsis Declared in `<openssl/params.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OSSL_PARAM_get_octet_string_ptr( xref:OSSL_PARAM.adoc[OSSL_PARAM] const* p, void const** val, size_t* used_len); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *p* | Parameter of type OSSL_PARAM_OCTET_STRING. | *val* | Receives a pointer to the internal octets (do not free). | *used_len* | Optional; receives the number of bytes at *`val.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#