Borrow pointers to the r and s components of an ECDSA signature.
Declared in <openssl/ec.h>
void
ECDSA_SIG_get0(
ECDSA_SIG const* sig,
BIGNUM const** pr,
BIGNUM const** ps);
| Name | Description |
|---|---|
| sig | Signature to query. |
| pr | Receives an internal pointer to r, or NULL to skip; do not free. |
| ps | Receives an internal pointer to s, or NULL to skip; do not free. |