Get const pointers to multi-prime CRT exponents and coefficients (deprecated).
Declared in <openssl/rsa.h>
[[deprecated]]
int
RSA_get0_multi_prime_crt_params(
RSA const* r,
BIGNUM const* exps[],
BIGNUM const* coeffs[]);
Deprecated. Use of this entity is allowed but discouraged.
1 on success, or 0 if r is not multi-prime / on error.
| 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. |