[#OSSL_HPKE_str2suite] = OSSL_HPKE_str2suite :mrdocs: Parse a comma‐separated "kem,kdf,aead" string into an OSSL_HPKE_SUITE. == Synopsis Declared in `<openssl/hpke.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OSSL_HPKE_str2suite( char const* str, OSSL_HPKE_SUITE* suite); ---- == Return Value 1 on success, or 0 on error. == Parameters [cols="1,4"] |=== | Name| Description | *str* | Suite string such as "x25519,hkdf‐sha256,aes‐128‐gcm" (case‐insensitive names or numeric ids). | *suite* | Destination suite filled on success. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#