*/
| 527 | /** |
| 528 | */ |
| 529 | static void ECDSA_SIG_get0(const ECDSA_SIG* sig, const BIGNUM** pr, const BIGNUM** ps) |
| 530 | { |
| 531 | if (pr != nullptr) *pr = sig->r; |
| 532 | if (ps != nullptr) *ps = sig->s; |
| 533 | }; |
| 534 | |
| 535 | /** |
| 536 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected