Return the PBE algorithm type and NID at index num in the registry.

Synopsis

Declared in <openssl/evp.h>

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

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.

Created with MrDocs