RSA_get0_crt_params

Borrow pointers to the RSA CRT parameters d mod (p-1), d mod (q-1), and q^-1 mod p (deprecated).

Synopsis

Declared in <openssl/rsa.h>

[[deprecated]]
void
RSA_get0_crt_params(
    RSA const* r,
    BIGNUM const** dmp1,
    BIGNUM const** dmq1,
    BIGNUM const** iqmp);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Parameters

NameDescription
rRSA key to query.
dmp1Receives dmp1, or NULL to skip; do not free.
dmq1Receives dmq1, or NULL to skip; do not free.
iqmpReceives iqmp, or NULL to skip; do not free.