PEM_read_bio_DHparams

Read Diffie-Hellman domain parameters from a PEM-encoded BIO (deprecated).

Synopsis

Declared in <openssl/pem.h>

[[deprecated]]
DH*
PEM_read_bio_DHparams(
    BIO* bp,
    DH** x,
    pem_password_cb* cb,
    void* u);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

DH parameters on success, or NULL on failure.

Parameters

NameDescription
bpBIO to read from.
xOptional address of a DH pointer to reuse, or NULL.
cbPassword callback for encrypted PEM, or NULL.
uApplication data passed to cb.