Borrow pointers to the r and s components of a DSA signature.
Declared in <openssl/dsa.h>
void
DSA_SIG_get0(
DSA_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. |