summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-03-17 14:18:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-03-19 22:04:38 +0000
commit34c2db9b562baffd30a6a2dda7d4247fadbf4acd (patch)
treee4f958c611f1751ed31d1f424bfcb72a81e4a22c /include
parent674d5858df6cd3dc5cafa25875861f4742d64608 (diff)
constify ECDSA_SIG_get0()
PR#4436 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/ec.h b/include/openssl/ec.h
index e67439b73d..103f718208 100644
--- a/include/openssl/ec.h
+++ b/include/openssl/ec.h
@@ -1139,7 +1139,7 @@ ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
* \param pr pointer to BIGNUM pointer for r (may be NULL)
* \param ps pointer to BIGNUM pointer for s (may be NULL)
*/
-void ECDSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, ECDSA_SIG *sig);
+void ECDSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, const ECDSA_SIG *sig);
/** Computes the ECDSA signature of the given hash value using
* the supplied private key and returns the created signature.