From: Richard J. Moore Date: Sun, 31 Jul 2016 00:08:30 +0000 (+0100) Subject: Const EC_KEY_dup X-Git-Tag: OpenSSL_1_1_0-pre6~25 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=4a9a0d9bcb6259124aa012b50540c298689fdf41;ds=sidebyside Const EC_KEY_dup Reviewed-by: Rich Salz Reviewed-by: Richard Levitte --- diff --git a/crypto/ec/ec_key.c b/crypto/ec/ec_key.c index 01faa62163..2d837f9c03 100644 --- a/crypto/ec/ec_key.c +++ b/crypto/ec/ec_key.c @@ -74,7 +74,7 @@ void EC_KEY_free(EC_KEY *r) OPENSSL_clear_free((void *)r, sizeof(EC_KEY)); } -EC_KEY *EC_KEY_copy(EC_KEY *dest, EC_KEY *src) +EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src) { if (dest == NULL || src == NULL) { ECerr(EC_F_EC_KEY_COPY, ERR_R_PASSED_NULL_PARAMETER); @@ -151,7 +151,7 @@ EC_KEY *EC_KEY_copy(EC_KEY *dest, EC_KEY *src) return dest; } -EC_KEY *EC_KEY_dup(EC_KEY *ec_key) +EC_KEY *EC_KEY_dup(const EC_KEY *ec_key) { EC_KEY *ret = EC_KEY_new_method(ec_key->engine); diff --git a/include/openssl/ec.h b/include/openssl/ec.h index a9ce2088d5..9db239751f 100644 --- a/include/openssl/ec.h +++ b/include/openssl/ec.h @@ -771,13 +771,13 @@ void EC_KEY_free(EC_KEY *key); * \param src src EC_KEY object * \return dst or NULL if an error occurred. */ -EC_KEY *EC_KEY_copy(EC_KEY *dst, EC_KEY *src); +EC_KEY *EC_KEY_copy(EC_KEY *dst, const EC_KEY *src); /** Creates a new EC_KEY object and copies the content from src to it. * \param src the source EC_KEY object * \return newly created EC_KEY object or NULL if an error occurred. */ -EC_KEY *EC_KEY_dup(EC_KEY *src); +EC_KEY *EC_KEY_dup(const EC_KEY *src); /** Increases the internal reference count of a EC_KEY object. * \param key EC_KEY object