Read a traditional RSA private key from a PEM‐encoded BIO (deprecated).

Synopsis

Declared in <openssl/pem.h>

[[deprecated]]
RSA*
PEM_read_bio_RSAPrivateKey(
    BIO* bp,
    RSA** x,
    pem_password_cb* cb,
    void* u);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

RSA key on success, or NULL on failure.

Parameters

Name

Description

bp

BIO to read from.

x

Optional address of an RSA pointer to reuse, or NULL.

cb

Password callback for encrypted PEM, or NULL.

u

Application data passed to cb.

Created with MrDocs