[#DSA_SIG_set0] = DSA_SIG_set0 :mrdocs: Set the r and s components of a DSA signature, transferring ownership. == Synopsis Declared in `<openssl/dsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int DSA_SIG_set0( xref:DSA_SIG.adoc[DSA_SIG]* sig, xref:BIGNUM.adoc[BIGNUM]* r, xref:BIGNUM.adoc[BIGNUM]* s); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *sig* | Signature object to update. | *r* | New r value; ownership transferred to `sig` (must not be NULL). | *s* | New s value; ownership transferred to `sig` (must not be NULL). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#