RSA_get0_multi_prime_crt_params

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

NameDescription
rMulti-prime RSA key to query.
expsCaller-provided array receiving exponent pointers (length RSA_get_multi_prime_extra_count).
coeffsCaller-provided array receiving coefficient pointers, or NULL.