Get const pointers to multi‐prime CRT exponents and coefficients (deprecated).

Synopsis

Declared in <openssl/rsa.h>

[[deprecated]]
int
RSA_get0_multi_prime_crt_params(
    RSA const* r,
    BIGNUM const* exps[],
    BIGNUM const* coeffs[]);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success, or 0 if r is not multi‐prime / on error.

Parameters

Name

Description

r

Multi‐prime RSA key to query.

exps

Caller‐provided array receiving exponent pointers (length RSA_get_multi_prime_extra_count).

coeffs

Caller‐provided array receiving coefficient pointers, or NULL.

Created with MrDocs