[#RSA_set0_crt_params] = RSA_set0_crt_params :mrdocs: Set the CRT parameters on an RSA key, transferring ownership (deprecated). == Synopsis Declared in `<openssl/rsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int RSA_set0_crt_params( xref:RSA.adoc[RSA]* r, xref:BIGNUM.adoc[BIGNUM]* dmp1, xref:BIGNUM.adoc[BIGNUM]* dmq1, xref:BIGNUM.adoc[BIGNUM]* iqmp); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#