Return the PBE algorithm type and NID at index num in the registry.
Declared in <openssl/evp.h>
int
EVP_PBE_get(
int* ptype,
int* ppbe_nid,
size_t num);
1 if num is valid, or 0 if out of range.
| 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. |