Set the CRT parameters on an RSA key, transferring ownership (deprecated).
Declared in <openssl/rsa.h>
[[deprecated]]
int
RSA_set0_crt_params(
RSA* r,
BIGNUM* dmp1,
BIGNUM* dmq1,
BIGNUM* iqmp);
Deprecated. Use of this entity is allowed but discouraged.
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| r | RSA key to update. |
| dmp1 | d mod (p-1), or NULL to leave unchanged (once set, may not clear). |
| dmq1 | d mod (q-1), or NULL to leave unchanged. |
| iqmp | q^-1 mod p, or NULL to leave unchanged. |