DSA_SIG_get0

Borrow pointers to the r and s components of a DSA signature.

Synopsis

Declared in <openssl/dsa.h>

void
DSA_SIG_get0(
    DSA_SIG const* sig,
    BIGNUM const** pr,
    BIGNUM const** ps);

Parameters

NameDescription
sigSignature to query.
prReceives an internal pointer to r, or NULL to skip; do not free.
psReceives an internal pointer to s, or NULL to skip; do not free.