summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ec_kmeth.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-12-13 00:11:42 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-12-16 14:17:53 +0000
commit2c61a5eccad5085cab916c0959cb4c2fec16f9e5 (patch)
treeae8e5ab9213a1fea1a3781ec92c463a00409fe16 /crypto/ec/ec_kmeth.c
parentc66ce5eb23f7611bd2822650d6ffeacbe0671072 (diff)
Constify EC_KEY in ECDH_compute_key.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/ec/ec_kmeth.c')
-rw-r--r--crypto/ec/ec_kmeth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ec/ec_kmeth.c b/crypto/ec/ec_kmeth.c
index e754179726..d6c2811fc8 100644
--- a/crypto/ec/ec_kmeth.c
+++ b/crypto/ec/ec_kmeth.c
@@ -134,7 +134,7 @@ EC_KEY *EC_KEY_new_method(ENGINE *engine)
}
int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
- EC_KEY *eckey,
+ const EC_KEY *eckey,
void *(*KDF) (const void *in, size_t inlen, void *out,
size_t *outlen))
{
@@ -190,7 +190,7 @@ void EC_KEY_METHOD_set_compute_key(EC_KEY_METHOD *meth,
int (*ckey)(void *out,
size_t outlen,
const EC_POINT *pub_key,
- EC_KEY *ecdh,
+ const EC_KEY *ecdh,
void *(*KDF) (const void *in,
size_t inlen,
void *out,
@@ -268,7 +268,7 @@ void EC_KEY_METHOD_get_compute_key(EC_KEY_METHOD *meth,
int (**pck)(void *out,
size_t outlen,
const EC_POINT *pub_key,
- EC_KEY *ecdh,
+ const EC_KEY *ecdh,
void *(*KDF) (const void *in,
size_t inlen,
void *out,