From a0cef658d6e15c0711c6e27c5969281a76acf20f Mon Sep 17 00:00:00 2001 From: "Dr. Matthias St. Pierre" Date: Mon, 28 May 2018 22:46:21 +0200 Subject: [PATCH] ECDSA_SIG: restore doc comments which were deleted accidentally amends 0396401d1c3f Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/6366) --- include/openssl/ec.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/openssl/ec.h b/include/openssl/ec.h index a24bee0e9c..ed2161dab0 100644 --- a/include/openssl/ec.h +++ b/include/openssl/ec.h @@ -1078,6 +1078,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) */ int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s); -- 2.25.1