| 984 | && LIBRESSL_VERSION_NUMBER < 0x2070000f) |
| 985 | |
| 986 | static void RSA_get0_key(const RSA *r, |
| 987 | const BIGNUM **n, const BIGNUM **e, const BIGNUM **d) |
| 988 | { |
| 989 | if (n != NULL) |
| 990 | *n = r->n; |
| 991 | if (e != NULL) |
| 992 | *e = r->e; |
| 993 | if (d != NULL) |
| 994 | *d = r->d; |
| 995 | } |
| 996 | |
| 997 | #endif |
| 998 |
no outgoing calls
no test coverage detected