RSA_get0_key
LCRYPTO_USED(RSA_get0_key);
void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e,
LCRYPTO_ALIAS(RSA_get0_key);
RSA_get0_key(rsa, &n, &e, &d);
RSA_get0_key(EVP_PKEY_get0_RSA(k->pkey), &n, NULL, NULL);
RSA_get0_key(EVP_PKEY_get0_RSA(k->pkey), NULL, &e, NULL);
RSA_get0_key(EVP_PKEY_get0_RSA(tpubkey), &n, NULL, NULL);
RSA_get0_key(rsa, &n, NULL, NULL);
RSA_get0_key(rsa_from, &rsa_n, &rsa_e, NULL);
RSA_get0_key(rsa, &rsa_n, &rsa_e, NULL);
RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);