mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
ECDSA_SIG_set0: r and s parameters cannot be NULL
Fixes #7731 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16129)
This commit is contained in:
parent
317ed1b417
commit
9aaf5048b1
@ -1347,8 +1347,8 @@ const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig);
|
||||
|
||||
/** Setter for r and s fields of ECDSA_SIG
|
||||
* \param sig pointer to ECDSA_SIG structure
|
||||
* \param r pointer to BIGNUM for r (may be NULL)
|
||||
* \param s pointer to BIGNUM for s (may be NULL)
|
||||
* \param r pointer to BIGNUM for r
|
||||
* \param s pointer to BIGNUM for s
|
||||
*/
|
||||
int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user