diff options
author | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2018-05-28 22:46:21 +0200 |
---|---|---|
committer | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2018-05-28 22:47:28 +0200 |
commit | a0cef658d6e15c0711c6e27c5969281a76acf20f (patch) | |
tree | 59c9ba92369ac7fdcaba484c824e526c1cbd32dd | |
parent | ECDSA_SIG: add simple getters for commonly used struct members (diff) | |
download | openssl-a0cef658d6e15c0711c6e27c5969281a76acf20f.tar.xz openssl-a0cef658d6e15c0711c6e27c5969281a76acf20f.zip |
ECDSA_SIG: restore doc comments which were deleted accidentally
amends 0396401d1c3f
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6366)
-rw-r--r-- | include/openssl/ec.h | 2 |
1 files changed, 2 insertions, 0 deletions
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); |