[#RSA_get0_multi_prime_factors] = RSA_get0_multi_prime_factors :mrdocs: Fill `primes` with borrowed pointers to the extra multi‐prime factors (deprecated). == Synopsis Declared in `<openssl/rsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int RSA_get0_multi_prime_factors( xref:RSA.adoc[RSA] const* r, xref:BIGNUM.adoc[BIGNUM] const* primes[]); ---- [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 if `r` is not multi‐prime / on error. == Parameters [cols="1,4"] |=== | Name| Description | *r* | RSA key that may have more than two primes. | *primes* | Array of size RSA_get_multi_prime_extra_count(`r)` receiving factor pointers (do not free). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#