Get const pointers to the RSA modulus and exponents (deprecated).
Declared in <openssl/rsa.h>
[[deprecated]]
void
RSA_get0_key(
RSA const* r,
BIGNUM const** n,
BIGNUM const** e,
BIGNUM const** d);
Deprecated. Use of this entity is allowed but discouraged.
const pointers to the RSA modulus and exponents (deprecated).
| Name | Description |
|---|---|
| r | RSA key to query. |
| n | Receives the modulus, or NULL if not requested. |
| e | Receives the public exponent, or NULL if not requested. |
| d | Receives the private exponent, or NULL if not requested. |