[#EVP_PBE_get] = EVP_PBE_get :mrdocs: Return the PBE algorithm type and NID at index `num` in the registry. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_PBE_get( int* ptype, int* ppbe_nid, size_t num); ---- == Return Value 1 if `num` is valid, or 0 if out of range. == Parameters [cols="1,4"] |=== | Name| Description | *ptype* | Optional destination for the PBE type (EVP_PBE_TYPE_*), or NULL. | *ppbe_nid* | Optional destination for the PBE algorithm NID, or NULL. | *num* | Zero‐based index into the registered PBE table. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#