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
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. |
Created with MrDocs